强大但易于记住 密码生成器 Diceware

  • 源码大小:6.94MB
  • 所需积分:1积分
  • 源码编号:19JP-3717
  • 浏览次数:748次
  • 最后更新:2023年07月14日
  • 所属栏目:表单
本站默认解压密码:19jp.com 或 19jp_com

简介

Diceware是一个基于jQuery的高熵但易于记忆的密码生成器,它使用普通骰子从Diceware单词列表中随机选择单词。

请参阅实际操作:

工作原理:

密码生成器基于上的建议https://world.std.com/~reinhold/diceware.html,其中虚拟骰子被扮演5次,并且5位数字用于单词查找表。4个骰子给你4个随机单词,这些单词对人类来说很容易记住,但熵很高,很难破解。

如何使用它:

1.在页面上包含jQuery库和捆绑的JavaScript&CSS。

  1. <link href="/path/to//dice.css" rel="stylesheet" />
  2. <script src="/path/to/cdn/jquery.slim.min.js"></script>
  3. <script src="/path/to/dist/bundle.js"></script>

2.为密码生成器创建HTML。

  1. <!-- This row is completely hidden, but is used to hold elements that get cloned after a dice roll. -->
  2. <div class="source" style="display: none; ">
  3. <div class="col-md-12" style="height: 0px; ">
  4. <div class="die dice1 dice_element" style="float: left; ">
  5. <div class="dot center"></div>
  6. </div>
  7. <div class="die dice2 dice_element" style="float: left; ">
  8. <div class="dot dtop dleft"></div>
  9. <div class="dot dbottom dright"></div>
  10. </div>
  11. <div class="die dice3 dice_element" style="float: left; ">
  12. <div class="dot dtop dleft"></div>
  13. <div class="dot center"></div>
  14. <div class="dot dbottom dright"></div>
  15. </div>
  16. <div class="die dice4 dice_element" style="float: left; ">
  17. <div class="dot dtop dleft"></div>
  18. <div class="dot dtop dright"></div>
  19. <div class="dot dbottom dleft"></div>
  20. <div class="dot dbottom dright"></div>
  21. </div>
  22. <div class="die dice5 dice_element" style="float: left; ">
  23. <div class="dot dtop dleft"></div>
  24. <div class="dot dtop dright"></div>
  25. <div class="dot center"></div>
  26. <div class="dot dbottom dleft"></div>
  27. <div class="dot dbottom dright"></div>
  28. </div>
  29. <div class="die dice6 dice_element" style="float: left; ">
  30. <div class="dot dtop dleft"></div>
  31. <div class="dot dtop dright"></div>
  32. <div class="dot center dleft"></div>
  33. <div class="dot center dright"></div>
  34. <div class="dot dbottom dleft"></div>
  35. <div class="dot dbottom dright"></div>
  36. </div>
  37. <div class="dice_word dice_element" style="float: left; padding-left: 20px; padding-top: 25px; ">
  38. </div>
  39. <div class="results_words_key" >Your words are: </div>
  40. <div class="results_words_value" ></div>
  41. <div class="results_phrase_key" >Your passphrase is: </div>
  42. <div class="results_phrase_value" ></div>
  43. <div class="results_num_possible_key" ># of possible passwords: </div>
  44. <div class="results_num_possible_value" ></div>
  45. </div>
  46. <div class="alert alert-danger bad_crypto" role="alert">
  47. <span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
  48. <span class="sr-only">Error:</span>
  49. Whoa there! Your browser doesn't have the getRandomValues() function.
  50. This means that dice rolls you make <em>will not be cryptogrpahically secure!</em><br/>
  51. Please try another browser. Otherwise, proceed at your own risk.
  52. </div>
  53. </div>
  54.  
  55. <div class="message" ></div>
  56. <h2 class="dice_num">
  57. Number of Dice Rolls:
  58. </h2>
  59. <div class="btn-group-lg" role="group" aria-label="...">
  60. <button id="button-dice-2" type="button" class="btn btn-default dice_button">2</button>
  61. <button id="button-dice-3" type="button" class="btn btn-default dice_button">3</button>
  62. <button id="button-dice-4" type="button" class="btn btn-default dice_button">4</button>
  63. <button id="button-dice-5" type="button" class="btn btn-default dice_button">5</button>
  64. <button id="button-dice-6" type="button" class="btn btn-default dice_button active">6</button>
  65. <button id="button-dice-7" type="button" class="btn btn-default dice_button">7</button>
  66. <button id="button-dice-8" type="button" class="btn btn-default dice_button">8</button>
  67. </div>
  68. <br/>
  69. <a name="roll_dice_button" ></a>
  70. <button type="button" class="btn btn-default btn-lg btn-primary" id="roll_dice">
  71. <span class="glyphicon glyphicon-play" aria-hidden="true" ></span>
  72. Roll Dice!
  73. </button>
  74.  
  75. <!-- Results will be displayed here. -->
  76. <div class="results">
  77. </div>

开发:

  1. $ npm install
  2. $ npm run dev-build
  3. $ http-server
  4. $ vim src/lib.js src/index.js
  5. $ rm -fv src/index.js && git co src/index.js
  6. $ npm run build

更新日志:

2022-02-07

  • v1.0.0版本。

预览截图