diff options
| author | Steven Fackler <[email protected]> | 2016-08-15 18:46:15 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-08-15 18:46:15 -0700 |
| commit | 0f428d190410263e4daa65b917c0e84707a9c0ef (patch) | |
| tree | 4d6d5b8b77c7ca5755a3636786b8a36584fba92a /openssl/src/x509/tests.rs | |
| parent | Merge branch 'release-v0.7.15-sys-v0.8.0' into release (diff) | |
| parent | Release openssl-sys v0.7.16, openssl v0.8.1 (diff) | |
| download | rust-openssl-openssl-sys-v0.7.16.tar.xz rust-openssl-openssl-sys-v0.7.16.zip | |
Merge branch 'release-sys-v0.7.16-v0.8.1' into releaseopenssl-v0.8.1openssl-sys-v0.7.16
Diffstat (limited to 'openssl/src/x509/tests.rs')
| -rw-r--r-- | openssl/src/x509/tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/src/x509/tests.rs b/openssl/src/x509/tests.rs index c09b31cd..43add896 100644 --- a/openssl/src/x509/tests.rs +++ b/openssl/src/x509/tests.rs @@ -86,7 +86,7 @@ fn test_cert_loading() { let cert = X509::from_pem(cert).ok().expect("Failed to load PEM"); let fingerprint = cert.fingerprint(SHA1).unwrap(); - let hash_str = "E19427DAC79FBE758394945276A6E4F15F0BEBE6"; + let hash_str = "59172d9313e84459bcff27f967e79e6e9217e584"; let hash_vec = hash_str.from_hex().unwrap(); assert_eq!(fingerprint, hash_vec); |