Last active
January 30, 2018 23:59
-
-
Save chrisdl/8304be4eaf9b7e67863b6f5a64578bc5 to your computer and use it in GitHub Desktop.
Revisions
-
chrisdl revised this gist
Jan 27, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ - plaintext = The secret text (message, password, ...) you want to encrypt. - ciphertext = A plaintext that has been encrypted. - cipher = A mathematical function that takes at least a key and a plaintext and produces a ciphertext. For example: AES. - hash function = A mathematical function that produces a hash which cannot be reversed back to plaintext. - key = A secret key that allows someone to decrypt a ciphertext back into a plaintext. - secret = see key. -
chrisdl revised this gist
Jan 22, 2018 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,4 +4,3 @@ - hash function = A mathematical function that produces a hash which cannot be reversed back to plaintext. - key = A secret key that allows someone to decrypt a ciphertext back into a plaintext. - secret = see key. -
chrisdl revised this gist
Jan 17, 2018 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,7 @@ - plaintext = The secret text (message, password, ...) you want to encrypt. - ciphertext = A plaintext that has been encrypted. - cipher = A mathematical function you provide a plaintext, key and sometimes that produces a ciphertext. For example: AES. - hash function = A mathematical function that produces a hash which cannot be reversed back to plaintext. - key = A secret key that allows someone to decrypt a ciphertext back into a plaintext. - secret = see key. - PBKDF2 = password based key derivation function (number 2 I guess). Used for hashing passwords. -
chrisdl revised this gist
Jan 11, 2018 . 1 changed file with 6 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ - plaintext = The secret text (message, password, ...) you want to encrypt. - ciphertext = A plaintext that has been encrypted. - cipher = A mathematical function you provide a plaintext, key and sometimes that produces a ciphertext. For example: AES. - hash function = A mathematical function that produces a hash which cannot be reversed back to the plaintext. - key = A secret key that allows someone to decrypt a ciphertext back into a plaintext. - secret = see key. -
chrisdl created this gist
Jan 11, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ plaintext = The secret text (message, password, ...) you want to encrypt. ciphertext = A plaintext that has been encrypted. cipher = A mathematical function you provide a plaintext, key and sometimes that produces a ciphertext. For example: AES. hash function = A mathematical function that produces a hash which cannot be reversed back to the plaintext. key = A secret key that allows someone to decrypt a ciphertext back into a plaintext. secret = see key.