Added support for air-gapped operation. #11

This commit is contained in:
Douglas Muth 2018-05-12 14:12:06 -04:00
parent cb8d301c7e
commit 80c2f90e38
5 changed files with 26 additions and 4 deletions

5
dist/bootstrap.min.css vendored Normal file

File diff suppressed because one or more lines are too long

7
dist/bootstrap.min.js vendored Normal file

File diff suppressed because one or more lines are too long

4
dist/jquery.min.js vendored Normal file

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -8,7 +8,7 @@
<title>Diceware: Create Secure Passwords You Can Actually Remember!</title>
<!-- Bootstrap -->
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">
<link href="./dist/bootstrap.min.css" rel="stylesheet">
<link href="./starter-template.css" rel="stylesheet">
<!-- Our different dice faces. -->
@ -265,8 +265,14 @@ used become more obscure, which makes them more difficult to remember, so I'm no
But for now, the functionality is there, if there is a desire for it.
<h3>FAQ: Why did you change the wordlist?</h3>
<h3>FAQ: Is Air-gapped Operation Supported?</h3>
It is now! The entire project can be downloaded and executed on a machine that is not connected to the Internet.
I was able to pull this off due in part to uploading the code to an AWS S3 Bucket and then making that
content available via <a href="https://aws.amazon.com/cloudfront/">CloudFront</a>.
<h3>FAQ: Why did you change the wordlist?</h3>
</p>
@ -299,9 +305,9 @@ Feel free to reach out to me if you have any comments, suggestions, or bug repor
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="./dist/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script src="./dist/bootstrap.min.js"></script>
<script src="./dist/bundle.js"></script>