Linux server1.hosting4iran.com 4.18.0-553.123.2.el8_10.x86_64 #1 SMP Thu May 7 15:28:41 EDT 2026 x86_64
LiteSpeed
Server IP : 185.208.174.156 & Your IP : 216.73.216.102
Domains : 326 Domain
User : satitravel
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
python3-cryptography /
docs /
Delete
Unzip
Name
Size
Permission
Date
Action
_static
[ DIR ]
drwxr-xr-x
2025-08-26 10:01
development
[ DIR ]
drwxr-xr-x
2025-12-21 17:06
hazmat
[ DIR ]
drwxr-xr-x
2020-10-28 03:17
x509
[ DIR ]
drwxr-xr-x
2025-12-21 17:06
Makefile
5.46
KB
-rw-r--r--
2020-10-28 03:11
api-stability.rst
2.28
KB
-rw-r--r--
2020-10-28 03:11
changelog.rst
30
B
-rw-r--r--
2020-10-28 03:11
community.rst
602
B
-rw-r--r--
2020-10-28 03:11
conf.py
6.07
KB
-rw-r--r--
2020-10-28 03:11
cryptography-docs.py
1.66
KB
-rw-r--r--
2020-10-28 03:11
doing-a-release.rst
3.58
KB
-rw-r--r--
2020-10-28 03:11
exceptions.rst
853
B
-rw-r--r--
2020-10-28 03:11
faq.rst
8.03
KB
-rw-r--r--
2020-10-28 03:11
fernet.rst
11.14
KB
-rw-r--r--
2020-10-28 03:11
glossary.rst
4.75
KB
-rw-r--r--
2020-10-28 03:11
index.rst
2.65
KB
-rw-r--r--
2020-10-28 03:11
installation.rst
9.52
KB
-rw-r--r--
2020-10-28 03:11
limitations.rst
1.2
KB
-rw-r--r--
2020-10-28 03:11
make.bat
4.99
KB
-rw-r--r--
2020-10-28 03:11
random-numbers.rst
1.55
KB
-rw-r--r--
2020-10-28 03:11
security.rst
3.58
KB
-rw-r--r--
2020-10-28 03:11
spelling_wordlist.txt
1.14
KB
-rw-r--r--
2020-10-28 03:11
Save
Rename
Known security limitations ========================== Secure memory wiping -------------------- `Memory wiping`_ is used to protect secret data or key material from attackers with access to deallocated memory. This is a defense-in-depth measure against vulnerabilities that leak application memory. Many ``cryptography`` APIs which accept ``bytes`` also accept types which implement the buffer interface. Thus, users wishing to do so can pass ``memoryview`` or another mutable type to ``cryptography`` APIs, and overwrite the contents once the data is no longer needed. However, ``cryptography`` does not clear memory by default, as there is no way to clear immutable structures such as ``bytes``. As a result, ``cryptography``, like almost all software in Python is potentially vulnerable to this attack. The `CERT secure coding guidelines`_ assesses this issue as "Severity: medium, Likelihood: unlikely, Remediation Cost: expensive to repair" and we do not consider this a high risk for most users. .. _`Memory wiping`: https://devblogs.microsoft.com/oldnewthing/?p=4223 .. _`CERT secure coding guidelines`: https://wiki.sei.cmu.edu/confluence/display/c/MEM03-C.+Clear+sensitive+information+stored+in+reusable+resources