diff options
| author | Steven Fackler <[email protected]> | 2013-12-28 17:09:18 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2013-12-28 17:09:18 -0700 |
| commit | 53e11b08f5a739213bfab7364cd4ade6b81ceda8 (patch) | |
| tree | f6280bf992d39f38c906ac639c3abe7a1ea83cbc | |
| parent | update to rust 0.9-pre (a5fa1d9) (diff) | |
| download | rust-openssl-53e11b08f5a739213bfab7364cd4ade6b81ceda8.tar.xz rust-openssl-53e11b08f5a739213bfab7364cd4ade6b81ceda8.zip | |
Prepare rustcrypto to merge into rust-openssl
| -rw-r--r-- | .gitignore | 9 | ||||
| -rw-r--r-- | README.md | 13 | ||||
| -rw-r--r-- | crypto/hash.rs (renamed from src/crypto/hash.rs) | 0 | ||||
| -rw-r--r-- | crypto/hex.rs (renamed from src/crypto/hex.rs) | 0 | ||||
| -rw-r--r-- | crypto/hmac.rs (renamed from src/crypto/hmac.rs) | 0 | ||||
| -rw-r--r-- | crypto/lib.rs (renamed from src/crypto/lib.rs) | 0 | ||||
| -rw-r--r-- | crypto/pkcs5.rs (renamed from src/crypto/pkcs5.rs) | 0 | ||||
| -rw-r--r-- | crypto/pkey.rs (renamed from src/crypto/pkey.rs) | 0 | ||||
| -rw-r--r-- | crypto/rand.rs (renamed from src/crypto/rand.rs) | 0 | ||||
| -rw-r--r-- | crypto/symm.rs (renamed from src/crypto/symm.rs) | 0 | ||||
| -rw-r--r-- | manifest.json | 6 |
11 files changed, 0 insertions, 28 deletions
diff --git a/.gitignore b/.gitignore deleted file mode 100644 index f8f57469..00000000 --- a/.gitignore +++ /dev/null @@ -1,9 +0,0 @@ -*.sw[po] -*.dylib -*.so -*.dSYM/ -/.rust -/bin/ -/build/ -/lib/ -/src/crypto/crypto diff --git a/README.md b/README.md deleted file mode 100644 index 16740d5b..00000000 --- a/README.md +++ /dev/null @@ -1,13 +0,0 @@ -This package provides Rust bindings for the functionality exposed by OpenSSL's -libcrypto. OpenSSL 1.0.1 or higher is required. Currently provided: - -* Hash functions (hash.rs) - * SHA-512, SHA-384, SHA-256, SHA-224 - * SHA-1 - * MD5 -* Symmetric crypto (symm.rs) - * AES-128 and AES-256 (ECB, CBC, CTR or GCM mode) - * RC4-128 -* RSA (pkey.rs) - * Encryption with PKCS #1 OAEP padding or PKCS #1 v1.5 padding - * Signatures with PKCS #1 v1.5 padding and any supported hash diff --git a/src/crypto/hash.rs b/crypto/hash.rs index bb75d0ef..bb75d0ef 100644 --- a/src/crypto/hash.rs +++ b/crypto/hash.rs diff --git a/src/crypto/hex.rs b/crypto/hex.rs index 1a7ed75b..1a7ed75b 100644 --- a/src/crypto/hex.rs +++ b/crypto/hex.rs diff --git a/src/crypto/hmac.rs b/crypto/hmac.rs index 5cac7f50..5cac7f50 100644 --- a/src/crypto/hmac.rs +++ b/crypto/hmac.rs diff --git a/src/crypto/lib.rs b/crypto/lib.rs index f1038450..f1038450 100644 --- a/src/crypto/lib.rs +++ b/crypto/lib.rs diff --git a/src/crypto/pkcs5.rs b/crypto/pkcs5.rs index 4dec03f6..4dec03f6 100644 --- a/src/crypto/pkcs5.rs +++ b/crypto/pkcs5.rs diff --git a/src/crypto/pkey.rs b/crypto/pkey.rs index b8206d4e..b8206d4e 100644 --- a/src/crypto/pkey.rs +++ b/crypto/pkey.rs diff --git a/src/crypto/rand.rs b/crypto/rand.rs index 4e95046b..4e95046b 100644 --- a/src/crypto/rand.rs +++ b/crypto/rand.rs diff --git a/src/crypto/symm.rs b/crypto/symm.rs index d3c54d27..d3c54d27 100644 --- a/src/crypto/symm.rs +++ b/crypto/symm.rs diff --git a/manifest.json b/manifest.json deleted file mode 100644 index e5b7ec06..00000000 --- a/manifest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "uuid": "38297409-b4c2-4499-8131-a99a7e44dad3", - "name": "rustcrypto", - "install": "git://github.com/elly/rustcrypto", - "license": "apache-2.0" -} |