nrfxlib API 2.7.99
Loading...
Searching...
No Matches

◆ ocrypto_rsa1024_pss_sha256_verify()

int ocrypto_rsa1024_pss_sha256_verify ( const uint8_t  s[128],
const uint8_t *  m,
size_t  m_len,
size_t  s_len,
const ocrypto_rsa1024_pub_key pk 
)

#include <crypto/nrf_oberon/include/ocrypto_rsa.h>

1024-bit RSA PSS SHA-256 signature verify.

The signature s of the input message m is verified.

Parameters
sThe 128-byte signature.
mThe signed message.
m_lenLength of m.
s_lenThe length of the salt.
pkA valid 1024-bit RSA public key.
Return values
0If the signature is valid.
-1If verification failed.
-2If the salt is too long.
Remarks
The key pk should be initialized with ocrypto_rsa1024_init_pub_key.