-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcrypto.README.txt
45 lines (26 loc) · 1.38 KB
/
crypto.README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
===============================================================================
crypto v1.0.0
Simple AES/DES encryption and SHA1/SHA2 hashing library
===============================================================================
Crypto provides a simple implementation of the Rijndael (now AES) and DES
encryption algorithms as well as the SHA1 and SHA2 hashing algorithms. The
library is almost a verbatim copy of the code from OpenBSD and PuTTY:
OpenBSD respository source code
https://github.com/openbsd/src/tree/master/sys/crypto
PuTTY repository source code
https://git.tartarus.org/?p=simon/putty.git
For more information regarding the cryptographic standards provided by the
crypto library, please visit the following websites:
Advanced Encryption Standard
https://en.wikipedia.org/wiki/Advanced_Encryption_Standard
Data Encryption Standard
https://en.wikipedia.org/wiki/Data_Encryption_Standard
SHA-1
https://en.wikipedia.org/wiki/SHA-1
SHA-2
https://en.wikipedia.org/wiki/SHA-2
For licensing information please refer to the LICENSE.txt document.
For information on building the Crypto external package, refer to the BUILDING
document in the external package's source repository at:
https://github.com/sdl-hercules-390/crypto
===============================================================================