Searched refs:len_g (Results 1 – 3 of 3) sorted by relevance
/optee_os/core/lib/libtomcrypt/src/pk/ecc/ |
A D | ecc_export_openssl.c | 29 unsigned long len_a, len_b, len_k, len_g, len_xy; in ecc_export_openssl() local 64 len_g = sizeof(bin_g); in ecc_export_openssl() 65 err = ltc_ecc_export_point(bin_g, &len_g, gx, gy, key->dp.size, flag_com); in ecc_export_openssl() 124 LTC_SET_ASN1(seq_ecparams, 3, LTC_ASN1_OCTET_STRING, bin_g, len_g); in ecc_export_openssl()
|
A D | ecc_import_x509.c | 46 unsigned long len_a, len_b, len_g, len_xy, len; in _ecc_import_x509_with_curve() local 78 len_g = seq_ecparams[3].size; in _ecc_import_x509_with_curve() 82 …if ((err = ltc_ecc_import_point(bin_g, len_g, prime, a, b, gx, gy)) != CRYPT_OK) { goto er… in _ecc_import_x509_with_curve()
|
A D | ecc_import_openssl.c | 55 unsigned long len_a, len_b, len_k, len_g; in _ecc_import_private_with_curve() local 94 len_g = seq_ecparams[3].size; in _ecc_import_private_with_curve() 98 …if ((err = ltc_ecc_import_point(bin_g, len_g, prime, a, b, gx, gy)) != CRYPT_OK) { goto er… in _ecc_import_private_with_curve()
|
Completed in 7 milliseconds