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

◆ ocrypto_rsa_crt_exp()

int ocrypto_rsa_crt_exp ( uint8_t *  m,
size_t  m_len,
const uint8_t *  c,
size_t  c_len,
const ocrypto_rsa_crt_key key,
uint32_t *  mem 
)

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

RSA CRT key exponentiation. m = (c^dp mod p - c^dq mod q) * qinv mod p * q + c^dq mod q

Parameters
[out]mThe generated message.
m_lenLength of m.
cThe ciphertext to be decrypted.
c_lenLength of c.
keyA valid RSA secret key with CRT coefficients.
memThe working memory. Length OCRYPTO_RSA_CRT_MEM_SIZE(bits).
Return values
-1If the input is too large (c >= n).
0On success.
Remarks
The key key should be initialized with ocrypto_rsa_init_crt_key.
c, m, and mem may be same.