Skip to content

Commit

Permalink
Merge pull request #2270 from sgmenda/support-evp-digest-squeeze
Browse files Browse the repository at this point in the history
Add binding for EVP_DigestSqueeze
  • Loading branch information
alex authored Aug 8, 2024
2 parents 10dba51 + 172c392 commit 499722f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions openssl-sys/src/handwritten/evp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ extern "C" {
pub fn EVP_DigestFinal(ctx: *mut EVP_MD_CTX, res: *mut u8, n: *mut u32) -> c_int;
#[cfg(ossl111)]
pub fn EVP_DigestFinalXOF(ctx: *mut EVP_MD_CTX, res: *mut u8, len: usize) -> c_int;
#[cfg(ossl330)]
pub fn EVP_DigestSqueeze(ctx: *mut EVP_MD_CTX, res: *mut u8, len: usize) -> c_int;

#[cfg(ossl300)]
pub fn EVP_MD_fetch(
Expand Down

0 comments on commit 499722f

Please sign in to comment.