Skip to content

Commit

Permalink
add function prototype to .h
Browse files Browse the repository at this point in the history
  • Loading branch information
cps-b committed Nov 13, 2023
1 parent b48aac5 commit 0caac47
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/mococrw/openssl_wrap.h
Original file line number Diff line number Diff line change
Expand Up @@ -672,6 +672,13 @@ void _X509_REQ_sign_ctx(X509_REQ *req, EVP_MD_CTX *ctx);
*/
const EVP_MD *_getMDPtrFromDigestType(DigestTypes type);

/**
* Get OSSL Params array for a given digest type.
* @param type
* @throws std::runtime_error if the requested digest function was not found.
*/
const std::array<OSSL_PARAM, 4> _getOSSLParamFromDigestType(DigestTypes type)

/**
* Create an MD_CTX object.
*
Expand Down

0 comments on commit 0caac47

Please sign in to comment.