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

◆ ocrypto_ecdsa_p224_sign()

int ocrypto_ecdsa_p224_sign ( uint8_t  sig[56],
const uint8_t *  m,
size_t  mlen,
const uint8_t  sk[28],
const uint8_t  ek[28] 
)

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

ECDSA P-224 signature generation.

The message m is signed using the secret key sk and the ephemeral session key ek. The signature is put into sig.

Parameters
[out]sigGenerated signature.
mInput message.
mlenLength of m.
skSecret key.
ekSession key. Must be pre-filled with random data.
Return values
0If ek is a valid session key.
-1Otherwise.
Remarks
To generate a valid signature use the following code pattern:
do get_random(ek); while (ocrypto_ecdsa_p224_sign(sig, m, mlen, sk, ek));
int ocrypto_ecdsa_p224_sign(uint8_t sig[56], const uint8_t *m, size_t mlen, const uint8_t sk[28], const uint8_t ek[28])