Skip to content

Instantly share code, notes, and snippets.

@chrisdl
Last active January 30, 2018 23:59
Show Gist options
  • Select an option

  • Save chrisdl/8304be4eaf9b7e67863b6f5a64578bc5 to your computer and use it in GitHub Desktop.

Select an option

Save chrisdl/8304be4eaf9b7e67863b6f5a64578bc5 to your computer and use it in GitHub Desktop.

Revisions

  1. chrisdl revised this gist Jan 27, 2018. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion crypto_glossary.md
    Original 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.
    - 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.
  2. chrisdl revised this gist Jan 22, 2018. 1 changed file with 0 additions and 1 deletion.
    1 change: 0 additions & 1 deletion crypto_glossary.md
    Original 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.
    - PBKDF2 = password based key derivation function (number 2 I guess). Used for hashing passwords.
  3. chrisdl revised this gist Jan 17, 2018. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion crypto_glossary.md
    Original 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 the plaintext.
    - 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.
  4. chrisdl revised this gist Jan 11, 2018. 1 changed file with 6 additions and 6 deletions.
    12 changes: 6 additions & 6 deletions crypto_glossary.md
    Original 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.
    - 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.
  5. chrisdl created this gist Jan 11, 2018.
    6 changes: 6 additions & 0 deletions crypto_glossary.md
    Original 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.