Home
last modified time | relevance | path

Searched refs:blocks (Results 1 – 15 of 15) sorted by relevance

/optee_os-3.20.0/core/arch/arm/crypto/
A Daes_armv8a_ce.h15 int rounds, int blocks, int first);
17 int rounds, int blocks, int first);
19 int rounds, int blocks, uint8_t iv[]);
21 int rounds, int blocks, uint8_t iv[]);
23 int rounds, int blocks, uint8_t ctr[], int first);
25 int rounds, int blocks, uint8_t const rk2[],
28 int rounds, int blocks, uint8_t const rk2[],
A Daes_modes_armv8a_ce_a32.S323 bmi .Lctrtailblock @ blocks < 0 means tail block
408 vld1.8 {q0-q1}, [r1]! @ get 3 pt blocks
419 vst1.8 {q0-q1}, [r0]! @ write 3 ct blocks
459 vld1.8 {q0-q1}, [r1]! @ get 3 ct blocks
470 vst1.8 {q0-q1}, [r0]! @ write 3 pt blocks
/optee_os-3.20.0/core/lib/libtomcrypt/
A Daes_accel.c98 unsigned long blocks, in aes_ecb_encrypt_nblocks() argument
106 blocks); in aes_ecb_encrypt_nblocks()
111 unsigned long blocks, in aes_ecb_decrypt_nblocks() argument
119 blocks); in aes_ecb_decrypt_nblocks()
137 unsigned long blocks, unsigned char *IV, in aes_cbc_encrypt_nblocks() argument
146 blocks, IV); in aes_cbc_encrypt_nblocks()
152 unsigned long blocks, unsigned char *IV, in aes_cbc_decrypt_nblocks() argument
161 blocks, IV); in aes_cbc_decrypt_nblocks()
181 skey->rijndael.Nr, blocks, IV); in aes_ctr_encrypt_nblocks()
200 skey1->rijndael.Nr, blocks, in aes_xts_encrypt_nblocks()
[all …]
A Dsha256_accel.c66 int sha256_ce_transform(ulong32 *state, const unsigned char *buf, int blocks);
69 int blocks) in sha256_compress_nblocks() argument
75 crypto_accel_sha256_compress(state, buf, blocks); in sha256_compress_nblocks()
A Dsha512_accel.c34 int sha512_ce_transform(ulong64 *state, const unsigned char *buf, int blocks);
37 int blocks) in sha512_compress_nblocks() argument
43 crypto_accel_sha512_compress(state, buf, blocks); in sha512_compress_nblocks()
A Dsha1_accel.c67 int blocks) in sha1_compress_nblocks() argument
73 crypto_accel_sha1_compress(state, buf, blocks); in sha1_compress_nblocks()
/optee_os-3.20.0/core/arch/arm/include/crypto/
A Dghash-ce-core.h18 void pmull_ghash_update_p64(int blocks, uint64_t dg[2], const uint8_t *src,
21 void pmull_ghash_update_p8(int blocks, uint64_t dg[2], const uint8_t *src,
27 void pmull_gcm_encrypt(int blocks, uint64_t dg[2], uint8_t dst[],
34 void pmull_gcm_decrypt(int blocks, uint64_t dg[2], uint8_t dst[],
/optee_os-3.20.0/core/lib/libtomcrypt/src/modes/xts/
A Dxts_test.c8 … int s_xts_test_accel_xts_encrypt(const unsigned char *pt, unsigned char *ct, unsigned long blocks, in s_xts_test_accel_xts_encrypt() argument
29 ret = xts_encrypt(pt, blocks << 4, ct, tweak, &xts); in s_xts_test_accel_xts_encrypt()
35 … int s_xts_test_accel_xts_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long blocks, in s_xts_test_accel_xts_decrypt() argument
56 ret = xts_decrypt(ct, blocks << 4, pt, tweak, &xts); in s_xts_test_accel_xts_decrypt()
/optee_os-3.20.0/core/lib/libtomcrypt/src/headers/
A Dtomcrypt_private.h80 void blowfish_enc(ulong32 *data, unsigned long blocks, const symmetric_key *skey);
94 unsigned long n, blocks; \
110 blocks = inlen / block_size; \
111 err = compress_n (md, in, blocks); \
113 blocks = 1; \
118 md-> state_var .length += blocks * block_size * 8; \
119 in += blocks * block_size; \
120 inlen -= blocks * block_size; \
A Dtomcrypt_cipher.h435 …int (*accel_ecb_encrypt)(const unsigned char *pt, unsigned char *ct, unsigned long blocks, const s…
444 …int (*accel_ecb_decrypt)(const unsigned char *ct, unsigned char *pt, unsigned long blocks, const s…
454 …int (*accel_cbc_encrypt)(const unsigned char *pt, unsigned char *ct, unsigned long blocks, unsigne…
464 …int (*accel_cbc_decrypt)(const unsigned char *ct, unsigned char *pt, unsigned long blocks, unsigne…
475 …int (*accel_ctr_encrypt)(const unsigned char *pt, unsigned char *ct, unsigned long blocks, unsigne…
486 …int (*accel_lrw_encrypt)(const unsigned char *pt, unsigned char *ct, unsigned long blocks, unsigne…
497 …int (*accel_lrw_decrypt)(const unsigned char *ct, unsigned char *pt, unsigned long blocks, unsigne…
604 unsigned long blocks, unsigned char *tweak,
619 unsigned long blocks, unsigned char *tweak,
/optee_os-3.20.0/lib/libutils/isoc/
A Dbget.doc150 a non-NULL release function is supplied, expansion blocks which become
206 expansion blocks when necessary, and release such blocks when they
244 function. Automatic release of empty pool blocks will occur only if all
245 pool blocks in the system are the size given by <pool_incr>.
251 pointed to by <curalloc>. The total free space (sum of all free blocks
266 pool blocks will be stored into the variable pointed to by <npool>. The
271 managed through blocks directly allocated by the acquisition and release
283 <dumpfree> is nonzero, the contents of free blocks are dumped.
/optee_os-3.20.0/core/lib/libtomcrypt/src/ciphers/
A Dblowfish.c331 void blowfish_enc(ulong32 *data, unsigned long blocks, const symmetric_key *skey) in blowfish_enc() argument
336 for (i = 0; i < blocks; ++i) { in blowfish_enc()
/optee_os-3.20.0/lib/libmbedtls/mbedtls/library/
A Daes.c1138 size_t blocks = length / 16; in mbedtls_aes_crypt_xts() local
1165 while( blocks-- ) in mbedtls_aes_crypt_xts()
1169 if( leftover && ( mode == MBEDTLS_AES_DECRYPT ) && blocks == 0 ) in mbedtls_aes_crypt_xts()
/optee_os-3.20.0/
A DCHANGELOG.md1050 * [#1188][issue1188] Secure storage (SQL FS and REE FS): blocks not tied to
/optee_os-3.20.0/lib/libmbedtls/mbedtls/
A DChangeLog3630 * zlib compression/decompression skipped on empty blocks

Completed in 26 milliseconds