diff options
| author | lloyd <[email protected]> | 2013-03-11 20:04:26 +0100 |
|---|---|---|
| committer | lloyd <[email protected]> | 2013-03-11 20:04:26 +0100 |
| commit | d4363841691dba0af5b1b411376d8fc344f96ad7 (patch) | |
| tree | f2ed13d8d5b369517543f3439a109e028e7da6e7 /README.md | |
| parent | Add support for RSA signing with alternate hashes (MD5, SHA-512, etc) (diff) | |
| download | rust-openssl-d4363841691dba0af5b1b411376d8fc344f96ad7.tar.xz rust-openssl-d4363841691dba0af5b1b411376d8fc344f96ad7.zip | |
Update readme with new hash/padding options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,9 +10,9 @@ libcrypto. Currently provided: * Keypair generation (pkey.rs) * RSA, all key lengths * Asymmetric encryption (pkey.rs) - * RSA with PKCS#1 OAEP padding + * RSA with PKCS #1 OAEP padding or PKCS #1 v1.5 padding * Digital signatures (pkey.rs) - * RSA with whatever your system openssl does (PKCS#1 on my system) and sha256 + * RSA with PKCS #1 v1.5 padding and any supported hash Each module provides two interfaces: a low-level API which wraps the OpenSSL interfaces as directly as possible and a high-level API which presents the |