We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48fe5ae commit 3ca2548Copy full SHA for 3ca2548
1 file changed
scripts/build_ffi.py
@@ -756,6 +756,8 @@ def build_ffi(local_wolfssl, features):
756
int wc_RsaPrivateDecrypt_ex(const byte* in, word32 inLen,
757
byte* out, word32 outLen, RsaKey* key, int type,
758
enum wc_HashType hash, int mgf, byte* label, word32 labelSz);
759
+ int wc_RsaSSL_Sign(const byte*, word32, byte*, word32, RsaKey*, WC_RNG*);
760
+ int wc_RsaSSL_Verify(const byte*, word32, byte*, word32, RsaKey*);
761
"""
762
763
if features["RSA_PSS"]:
@@ -766,8 +768,6 @@ def build_ffi(local_wolfssl, features):
766
768
enum wc_HashType hash, int mgf, RsaKey* key);
767
769
int wc_RsaPSS_CheckPadding(const byte* in, word32 inSz, byte* sig,
770
word32 sigSz, enum wc_HashType hashType);
- int wc_RsaSSL_Sign(const byte*, word32, byte*, word32, RsaKey*, WC_RNG*);
- int wc_RsaSSL_Verify(const byte*, word32, byte*, word32, RsaKey*);
771
772
773
if features["RSA_BLINDING"]:
0 commit comments