Home
last modified time | relevance | path

Searched refs:coeffslens (Results 1 – 2 of 2) sorted by relevance

/freebsd/crypto/libecc/src/examples/sig/rsa/
H A Drsa.h118 const u8 **coeffs, u16 *coeffslens, u8 u);
H A Drsa.c138 const u8 **coeffs, u16 *coeffslens, u8 u) in rsa_import_crt_priv_key() argument
158 MUST_HAVE((coeffslens != NULL), ret, err); in rsa_import_crt_priv_key()
166 ret = nn_init_from_buf(&(cur->r), coeffs[i], coeffslens[i]); EG(ret, err); in rsa_import_crt_priv_key()
167 ret = nn_init_from_buf(&(cur->d), coeffs[i + 1], coeffslens[i + 1]); EG(ret, err); in rsa_import_crt_priv_key()
168 ret = nn_init_from_buf(&(cur->t), coeffs[i + 2], coeffslens[i + 2]); EG(ret, err); in rsa_import_crt_priv_key()