Home
last modified time | relevance | path

Searched refs:crypto_bignum_allocate (Results 1 – 18 of 18) sorted by relevance

/optee_os/lib/libmbedtls/core/
A Ddh.c21 s->g = crypto_bignum_allocate(key_size_bits); in crypto_acipher_alloc_dh_keypair()
24 s->p = crypto_bignum_allocate(key_size_bits); in crypto_acipher_alloc_dh_keypair()
27 s->y = crypto_bignum_allocate(key_size_bits); in crypto_acipher_alloc_dh_keypair()
30 s->x = crypto_bignum_allocate(key_size_bits); in crypto_acipher_alloc_dh_keypair()
33 s->q = crypto_bignum_allocate(key_size_bits); in crypto_acipher_alloc_dh_keypair()
A Drsa.c133 s->e = crypto_bignum_allocate(key_size_bits); in crypto_acipher_alloc_rsa_keypair()
136 s->d = crypto_bignum_allocate(key_size_bits); in crypto_acipher_alloc_rsa_keypair()
139 s->n = crypto_bignum_allocate(key_size_bits); in crypto_acipher_alloc_rsa_keypair()
142 s->p = crypto_bignum_allocate(key_size_bits); in crypto_acipher_alloc_rsa_keypair()
145 s->q = crypto_bignum_allocate(key_size_bits); in crypto_acipher_alloc_rsa_keypair()
148 s->qp = crypto_bignum_allocate(key_size_bits); in crypto_acipher_alloc_rsa_keypair()
151 s->dp = crypto_bignum_allocate(key_size_bits); in crypto_acipher_alloc_rsa_keypair()
154 s->dq = crypto_bignum_allocate(key_size_bits); in crypto_acipher_alloc_rsa_keypair()
168 s->e = crypto_bignum_allocate(key_size_bits); in crypto_acipher_alloc_rsa_public_key()
171 s->n = crypto_bignum_allocate(key_size_bits); in crypto_acipher_alloc_rsa_public_key()
A Decc.c401 s->d = crypto_bignum_allocate(key_size_bits); in crypto_asym_alloc_ecc_keypair()
404 s->x = crypto_bignum_allocate(key_size_bits); in crypto_asym_alloc_ecc_keypair()
407 s->y = crypto_bignum_allocate(key_size_bits); in crypto_asym_alloc_ecc_keypair()
472 s->x = crypto_bignum_allocate(key_size_bits); in crypto_asym_alloc_ecc_public_key()
475 s->y = crypto_bignum_allocate(key_size_bits); in crypto_asym_alloc_ecc_public_key()
A Dbignum.c71 struct bignum *crypto_bignum_allocate(size_t size_bits) in crypto_bignum_allocate() function
/optee_os/core/drivers/crypto/caam/acipher/
A Dcaam_dsa.c283 key->g = crypto_bignum_allocate(l_bits); in do_allocate_keypair()
288 key->p = crypto_bignum_allocate(l_bits); in do_allocate_keypair()
293 key->q = crypto_bignum_allocate(n_bits); in do_allocate_keypair()
298 key->x = crypto_bignum_allocate(n_bits); in do_allocate_keypair()
303 key->y = crypto_bignum_allocate(l_bits); in do_allocate_keypair()
337 key->g = crypto_bignum_allocate(l_bits); in do_allocate_publickey()
342 key->p = crypto_bignum_allocate(l_bits); in do_allocate_publickey()
347 key->q = crypto_bignum_allocate(n_bits); in do_allocate_publickey()
352 key->y = crypto_bignum_allocate(l_bits); in do_allocate_publickey()
A Dcaam_dh.c169 key->g = crypto_bignum_allocate(size_bits); in do_allocate_keypair()
174 key->p = crypto_bignum_allocate(size_bits); in do_allocate_keypair()
179 key->x = crypto_bignum_allocate(size_bits); in do_allocate_keypair()
184 key->y = crypto_bignum_allocate(size_bits); in do_allocate_keypair()
189 key->q = crypto_bignum_allocate(size_bits); in do_allocate_keypair()
A Dcaam_ecc.c153 key->d = crypto_bignum_allocate(size_bits); in do_allocate_keypair()
158 key->x = crypto_bignum_allocate(size_bits); in do_allocate_keypair()
163 key->y = crypto_bignum_allocate(size_bits); in do_allocate_keypair()
193 key->x = crypto_bignum_allocate(size_bits); in do_allocate_publickey()
198 key->y = crypto_bignum_allocate(size_bits); in do_allocate_publickey()
A Dcaam_rsa.c360 key->e = crypto_bignum_allocate(MAX_BITS_EXP_E); in do_allocate_keypair()
365 key->d = crypto_bignum_allocate(size_bits); in do_allocate_keypair()
370 key->n = crypto_bignum_allocate(size_bits); in do_allocate_keypair()
375 key->p = crypto_bignum_allocate(size_bits / 2); in do_allocate_keypair()
380 key->q = crypto_bignum_allocate(size_bits / 2); in do_allocate_keypair()
385 key->dp = crypto_bignum_allocate(size_bits / 2); in do_allocate_keypair()
390 key->dq = crypto_bignum_allocate(size_bits / 2); in do_allocate_keypair()
395 key->qp = crypto_bignum_allocate(size_bits / 2); in do_allocate_keypair()
424 key->e = crypto_bignum_allocate(MAX_BITS_EXP_E); in do_allocate_publickey()
429 key->n = crypto_bignum_allocate(size_bits); in do_allocate_publickey()
/optee_os/core/lib/libtomcrypt/
A Dacipher_helpers.h17 *s = crypto_bignum_allocate(_CFG_CORE_LTC_BIGNUM_MAX_BITS); in bn_alloc_max()
A Dmpi_desc.c750 struct bignum *crypto_bignum_allocate(size_t size_bits) in crypto_bignum_allocate() function
/optee_os/core/include/crypto/
A Dcrypto.h93 struct bignum *crypto_bignum_allocate(size_t size_bits);
/optee_os/core/drivers/crypto/se050/core/
A Decc.c95 *s = crypto_bignum_allocate(4096); in bn_alloc_max()
A Drsa.c69 *s = crypto_bignum_allocate(4096); in bn_alloc_max()
/optee_os/core/crypto/
A Dcrypto.c449 struct bignum *crypto_bignum_allocate(size_t size_bits __unused) in crypto_bignum_allocate() function
/optee_os/core/tee/
A Dtee_svc_cryp.c2984 pub = crypto_bignum_allocate(alloc_size); in syscall_cryp_derive_key()
2985 ss = crypto_bignum_allocate(alloc_size); in syscall_cryp_derive_key()
/optee_os/out/arm/core/
A Dtee.symb_sizes979 000000000e13616c 0000000000000058 T crypto_bignum_allocate
A Dtee.dmp2298 000000000e13616c g F .text 0000000000000058 crypto_bignum_allocate
56502 e124790: 94004677 bl e13616c <crypto_bignum_allocate>
56506 e12479c: 94004674 bl e13616c <crypto_bignum_allocate>
76343 e131884: 9400123a bl e13616c <crypto_bignum_allocate>
77178 e1321b0: 94000fef bl e13616c <crypto_bignum_allocate>
77793 e132840: 94000e4b bl e13616c <crypto_bignum_allocate>
79136 e133798: 94000a75 bl e13616c <crypto_bignum_allocate>
83021 000000000e13616c <crypto_bignum_allocate>:
83022 crypto_bignum_allocate():
83033 e136188: b4000160 cbz x0, e1361b4 <crypto_bignum_allocate+0x48>
[all …]
A Dtee.map23745 .text.crypto_bignum_allocate
23747 0x000000000e13616c crypto_bignum_allocate

Completed in 214 milliseconds