aboutsummaryrefslogtreecommitdiffstats
path: root/docs/glossary.rst
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-12-08 10:28:30 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-12-08 10:28:30 -0800
commit953ebf8ab4b14c96ce921caea6a619dbf69dfa77 (patch)
tree1656a87f8bc4789ba67d0b4383a5d1efaf412e73 /docs/glossary.rst
parent44f391a81a5df4f38002cbcf611782b93193ec3b (diff)
downloadcryptography-953ebf8ab4b14c96ce921caea6a619dbf69dfa77.tar.gz
cryptography-953ebf8ab4b14c96ce921caea6a619dbf69dfa77.tar.bz2
cryptography-953ebf8ab4b14c96ce921caea6a619dbf69dfa77.zip
Improved the docs -- more glossary entries, more advice for writing docs
Diffstat (limited to 'docs/glossary.rst')
-rw-r--r--docs/glossary.rst11
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/glossary.rst b/docs/glossary.rst
index b6f2d06f..63e0a6ce 100644
--- a/docs/glossary.rst
+++ b/docs/glossary.rst
@@ -28,3 +28,14 @@ Glossary
asymmetric cryptography
Cryptographic operations where encryption and decryption use different
keys. There are separate encryption and decryption keys.
+
+ authentication
+ The process of verifying that a message was created by a specific
+ individual (or program). Like encryption, authentication can be either
+ symmetric or asymmetric. Authentication is necessary for effective
+ encryption.
+
+ Ciphertext indistinguishability
+ This is a property of encryption systems whereby two encrypted messages
+ aren't distinguishable without knowing the encryption key. This is
+ considered a basic, necessary property for a working encryption system.