Skip to content

Commit

Permalink
Introduce SslSignatureAlgorithm::RSA_PKCS1_MD5_SHA1
Browse files Browse the repository at this point in the history
  • Loading branch information
nox committed Oct 6, 2023
1 parent 107a829 commit c62f66c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions boring/src/ssl/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -597,6 +597,9 @@ impl SslSignatureAlgorithm {
pub const RSA_PKCS1_SHA512: SslSignatureAlgorithm =
SslSignatureAlgorithm(ffi::SSL_SIGN_RSA_PKCS1_SHA512 as _);

pub const RSA_PKCS1_MD5_SHA1: SslSignatureAlgorithm =
SslSignatureAlgorithm(ffi::SSL_SIGN_RSA_PKCS1_MD5_SHA1 as _);

pub const ECDSA_SHA1: SslSignatureAlgorithm =
SslSignatureAlgorithm(ffi::SSL_SIGN_ECDSA_SHA1 as _);

Expand Down

0 comments on commit c62f66c

Please sign in to comment.