Searched refs:len_a (Results 1 – 3 of 3) sorted by relevance
/optee_os-3.20.0/core/lib/libtomcrypt/src/pk/ecc/ |
A D | ecc_export_openssl.c | 22 unsigned long len_a, len_b, len_k, len_g, len_xy; in ecc_export_openssl() local 56 len_a = mp_unsigned_bin_size(a); in ecc_export_openssl() 57 …if (len_a > sizeof(bin_a)) { err = CRYPT_BUFFER_OVERFLOW; goto e… in ecc_export_openssl() 59 if (len_a == 0) { len_a = 1; bin_a[0] = 0; } /* handle case a == 0 */ in ecc_export_openssl() 103 LTC_SET_ASN1(seq_curve, 0, LTC_ASN1_OCTET_STRING, bin_a, len_a); in ecc_export_openssl()
|
A D | ecc_import_x509.c | 39 unsigned long len_a, len_b, len_g, len_xy, len; in s_ecc_import_x509_with_curve() local 69 len_a = seq_curve[0].size; in s_ecc_import_x509_with_curve() 73 …if ((err = mp_read_unsigned_bin(a, bin_a, len_a)) != CRYPT_OK) { goto er… in s_ecc_import_x509_with_curve()
|
A D | ecc_import_openssl.c | 48 unsigned long len_a, len_b, len_k, len_g; in s_ecc_import_private_with_curve() local 85 len_a = seq_curve[0].size; in s_ecc_import_private_with_curve() 89 …if ((err = mp_read_unsigned_bin(a, bin_a, len_a)) != CRYPT_OK) { goto er… in s_ecc_import_private_with_curve()
|
Completed in 4 milliseconds