Skip to content

Commit 616e38f

Browse files
author
Will Bamberg
committed
Clarify comments
1 parent b962656 commit 616e38f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

web-crypto/encrypt-decrypt/aes-cbc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(() => {
22

33
/*
4-
Store the calculated ciphertext and IV here, so we can decrypt it later.
4+
Store the calculated ciphertext and IV here, so we can decrypt the message later.
55
*/
66
let ciphertext;
77
let iv;

web-crypto/encrypt-decrypt/aes-ctr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(() => {
22

33
/*
4-
Store the calculated ciphertext and counter here, so we can decrypt it later.
4+
Store the calculated ciphertext and counter here, so we can decrypt the message later.
55
*/
66
let ciphertext;
77
let counter;

web-crypto/encrypt-decrypt/aes-gcm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(() => {
22

33
/*
4-
Store the calculated ciphertext and IV here, so we can decrypt it later.
4+
Store the calculated ciphertext and IV here, so we can decrypt the message later.
55
*/
66
let ciphertext;
77
let iv;

web-crypto/encrypt-decrypt/rsa-oaep.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(() => {
22

33
/*
4-
Store the calculated ciphertext here, so we can decrypt it later.
4+
Store the calculated ciphertext here, so we can decrypt the message later.
55
*/
66
let ciphertext;
77

0 commit comments

Comments
 (0)