aboutsummaryrefslogtreecommitdiffstats
path: root/docs/glossary.rst
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-11-04 14:44:59 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-11-04 14:44:59 -0800
commit4bdb6b54f56618a2d2cf73903b3b117436fe9fb8 (patch)
tree1564feaf49472df7014f8c9484aa72e8486846b3 /docs/glossary.rst
parent7e262a6d730f45d40645323c8462b4c480fe7319 (diff)
parent79eaa7efa2aaafd62ffeee7385526f14647e5a7e (diff)
downloadcryptography-4bdb6b54f56618a2d2cf73903b3b117436fe9fb8.tar.gz
cryptography-4bdb6b54f56618a2d2cf73903b3b117436fe9fb8.tar.bz2
cryptography-4bdb6b54f56618a2d2cf73903b3b117436fe9fb8.zip
Merge branch 'master' into more-error-condition
Conflicts: tests/hazmat/bindings/test_openssl.py
Diffstat (limited to 'docs/glossary.rst')
-rw-r--r--docs/glossary.rst30
1 files changed, 30 insertions, 0 deletions
diff --git a/docs/glossary.rst b/docs/glossary.rst
new file mode 100644
index 00000000..e4fc8283
--- /dev/null
+++ b/docs/glossary.rst
@@ -0,0 +1,30 @@
+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. These **must** be kept secret, if a key is
+ exposed to an attacker, any data encrypted with it will be exposed.
+
+ 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.