Guest User

Untitled

a guest
Jan 20th, 2018
492
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. - plaintext = The secret text (message, password, ...) you want to encrypt.
  2. - ciphertext = A plaintext that has been encrypted.
  3. - cipher = A mathematical function you provide a plaintext, key and sometimes that produces a ciphertext. For example: AES.
  4. - hash function = A mathematical function that produces a hash which cannot be reversed back to plaintext.
  5. - key = A secret key that allows someone to decrypt a ciphertext back into a plaintext.
  6. - secret = see key.
  7. - PBKDF2 = password based key derivation function (number 2 I guess). Used for hashing passwords.
Add Comment
Please, Sign In to add comment