nrfxlib API 2.8.99
|
int ocrypto_ecdh_p384_common_secret | ( | uint8_t | r[48], |
const uint8_t | sk[48], | ||
const uint8_t | pk[96] ) |
#include <crypto/nrf_oberon/include/ocrypto_ecdh_p384.h>
ECDH P-384 common secret.
The common secret is computed from both the client's public key pk
and the server's secret key sk
and put into r
.
[out] | r | Generated common secret. |
sk | Server private key. | |
pk | Client public key. |
0 | If sk is a valid secret key and pk is a valid public key. |
-1 | Otherwise. |
r
may be same as sk
or pk
.