nrfxlib API 2.8.99
|
int ocrypto_rsa2048_pkcs1_v15_sha256_verify | ( | const uint8_t | s[256], |
const uint8_t * | m, | ||
size_t | mlen, | ||
const ocrypto_rsa2048_pub_key * | pk ) |
#include <crypto/nrf_oberon/include/ocrypto_rsa.h>
2048-bit RSA PKCS1 V1.5 SHA-256 signature verify.
The signature s
of the input message m
is verified.
s | The 256-byte signature. |
m | The signed message. |
mlen | Length of m . |
pk | A valid 2048-bit RSA public key. |
0 | If the signature is valid. |
-1 | If verification failed. |
pk
should be initialized with ocrypto_rsa2048_init_pub_key
.