aboutsummaryrefslogtreecommitdiffstats
path: root/docs/glossary.rst
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-11-03 13:10:57 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-11-03 13:10:57 -0800
commit8c9dcb38167938068fe7b662dc403dd03a8a7ef8 (patch)
treecdfb2adc05a945d5609bd54d5638d5eb516b7ba6 /docs/glossary.rst
parentd4e98f8d552843c371600c88e1cdab94678081a9 (diff)
downloadcryptography-8c9dcb38167938068fe7b662dc403dd03a8a7ef8.tar.gz
cryptography-8c9dcb38167938068fe7b662dc403dd03a8a7ef8.tar.bz2
cryptography-8c9dcb38167938068fe7b662dc403dd03a8a7ef8.zip
Began writing a glossary
Diffstat (limited to 'docs/glossary.rst')
-rw-r--r--docs/glossary.rst29
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/glossary.rst b/docs/glossary.rst
new file mode 100644
index 00000000..b80b4b2b
--- /dev/null
+++ b/docs/glossary.rst
@@ -0,0 +1,29 @@
+Glossary
+========
+
+.. glossary::
+
+ plaintext
+ User-readable data you care about.
+
+ ciphertext
+ The encoded data, it's not user readable. Potential attackers are able
+ to see this.
+
+ encryption
+ The process of converting plaintext to ciphertext.
+
+ decryption
+ The process of converting ciphertext to plaintext.
+
+ key
+ Secret data is encoded with a function using this key. Sometimes
+ multiple keys are used.
+
+ symmetric cryptography
+ Cryptographic operations where encryption and decryption use the same
+ key.
+
+ asymmetric cryptography
+ Cryptographic operations where encryption and decryption use different
+ keys. There are seperate encryption and decryption keys.