diff options
| author | Chris Cole <[email protected]> | 2015-01-02 15:43:02 -0500 |
|---|---|---|
| committer | Chris Cole <[email protected]> | 2015-01-02 15:43:02 -0500 |
| commit | 077846fdb15d3495cdc053e8ba728b31e0f2635b (patch) | |
| tree | 222e48dd6a8376cb4a5ef2e3d44a38a5f90d47f6 /src/crypto/hmac.rs | |
| parent | Added Copy impl. (diff) | |
| parent | Merge pull request #134 from DiamondLovesYou/master (diff) | |
| download | rust-openssl-077846fdb15d3495cdc053e8ba728b31e0f2635b.tar.xz rust-openssl-077846fdb15d3495cdc053e8ba728b31e0f2635b.zip | |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'src/crypto/hmac.rs')
| -rw-r--r-- | src/crypto/hmac.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/crypto/hmac.rs b/src/crypto/hmac.rs index aab0c014..9e8b6361 100644 --- a/src/crypto/hmac.rs +++ b/src/crypto/hmac.rs @@ -78,7 +78,7 @@ mod tests { #[test] fn test_hmac_md5() { // test vectors from RFC 2202 - let tests: [(Vec<u8>, Vec<u8>, Vec<u8>), ..7] = [ + let tests: [(Vec<u8>, Vec<u8>, Vec<u8>); 7] = [ (Vec::from_elem(16, 0x0b_u8), b"Hi There".to_vec(), "9294727a3638bb1c13f48ef8158bfc9d".from_hex().unwrap()), (b"Jefe".to_vec(), @@ -111,7 +111,7 @@ mod tests { #[test] fn test_hmac_sha1() { // test vectors from RFC 2202 - let tests: [(Vec<u8>, Vec<u8>, Vec<u8>), ..7] = [ + let tests: [(Vec<u8>, Vec<u8>, Vec<u8>); 7] = [ (Vec::from_elem(20, 0x0b_u8), b"Hi There".to_vec(), "b617318655057264e28bc0b6fb378c8ef146be00".from_hex().unwrap()), (b"Jefe".to_vec(), @@ -143,7 +143,7 @@ mod tests { fn test_sha2(ty: HashType, results: &[Vec<u8>]) { // test vectors from RFC 4231 - let tests: [(Vec<u8>, Vec<u8>), ..6] = [ + let tests: [(Vec<u8>, Vec<u8>); 6] = [ (Vec::from_elem(20, 0x0b_u8), b"Hi There".to_vec()), (b"Jefe".to_vec(), b"what do ya want for nothing?".to_vec()), |