Home
last modified time | relevance | path

Searched refs:mp_read_unsigned_octets (Results 1 – 4 of 4) sorted by relevance

/titanic_41/usr/src/common/crypto/ecc/
H A Dec.c163 CHECK_MPI_OK( mp_read_unsigned_octets(&Px, pointP->data + 1, (mp_size) len) ); in ec_points_mul()
164 CHECK_MPI_OK( mp_read_unsigned_octets(&Py, pointP->data + 1 + len, (mp_size) len) ); in ec_points_mul()
175 CHECK_MPI_OK( mp_read_unsigned_octets(&Gx, params->base.data + 1, in ec_points_mul()
177 CHECK_MPI_OK( mp_read_unsigned_octets(&Gy, params->base.data + 1 + len, in ec_points_mul()
331 CHECK_MPI_OK( mp_read_unsigned_octets(&k, key->privateValue.data, in ec_NewKey()
399 CHECK_MPI_OK( mp_read_unsigned_octets(&privKeyVal, privKeyBytes, 2*len) ); in ec_GenerateRandomPrivateKey()
400 CHECK_MPI_OK( mp_read_unsigned_octets(&order_1, order, len) ); in ec_GenerateRandomPrivateKey()
497 CHECK_MPI_OK( mp_read_unsigned_octets(&Px, publicValue->data + 1, (mp_size) len) ); in EC_ValidatePublicKey()
498 CHECK_MPI_OK( mp_read_unsigned_octets(&Py, publicValue->data + 1 + len, (mp_size) len) ); in EC_ValidatePublicKey()
585 CHECK_MPI_OK( mp_read_unsigned_octets(&k, privateValue->data, in ECDH_Derive()
[all …]
H A Decc_impl.h215 CHECK_MPI_OK(mp_read_unsigned_octets((mp), (it).data, (it).len))
/titanic_41/usr/src/common/mpi/
H A Dmpi.h351 mp_err mp_read_unsigned_octets(mp_int *mp, const unsigned char *str, mp_size len);
H A Dmpi.c4686 mp_read_unsigned_octets(mp_int *mp, const unsigned char *str, mp_size len) in mp_read_unsigned_octets() function