Merge pull request #1083 from sfackler/digest-eq

Implement Eq for MessageDigest
This commit is contained in:
Steven Fackler 2019-03-17 14:42:44 -04:00 committed by GitHub
commit a335c1b2f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ cfg_if! {
}
}
#[derive(Copy, Clone)]
#[derive(Copy, Clone, PartialEq, Eq)]
pub struct MessageDigest(*const ffi::EVP_MD);
impl MessageDigest {