diff options
| author | Steven Fackler <[email protected]> | 2016-08-14 10:11:38 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-08-14 10:11:38 -0700 |
| commit | 773a6f0735f0a1d5dc92034a6a877bce7272071d (patch) | |
| tree | bb9110f02bea48a58d8502865374d384bc38c04a /openssl/src/x509 | |
| parent | Mangle c helper functions (diff) | |
| download | rust-openssl-773a6f0735f0a1d5dc92034a6a877bce7272071d.tar.xz rust-openssl-773a6f0735f0a1d5dc92034a6a877bce7272071d.zip | |
Start on PKCS #12 support
Diffstat (limited to 'openssl/src/x509')
| -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); |