File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 101
101
The key material is a password supplied by the user.
102
102
*/
103
103
function getKeyMaterial ( ) {
104
- const password = window . prompt ( "Enter your password" ) ;
104
+ const password = window . prompt ( "Enter your password. The password is: 'correct horse battery staple'. " ) ;
105
105
const enc = new TextEncoder ( ) ;
106
106
return window . crypto . subtle . importKey (
107
107
"raw" ,
Original file line number Diff line number Diff line change 37
37
The key material is a password supplied by the user.
38
38
*/
39
39
function getKeyMaterial ( ) {
40
- const password = window . prompt ( "Enter your password" ) ;
40
+ const password = window . prompt ( "Enter your password. The password is 'correct horse battery staple'. " ) ;
41
41
const enc = new TextEncoder ( ) ;
42
42
return window . crypto . subtle . importKey (
43
43
"raw" ,
You can’t perform that action at this time.
0 commit comments