| /optee_os/ |
| H A D | MAINTAINERS | 38 F: mk/aosp_optee.mk 43 F: core/arch/arm/plat-vexpress/ 48 F: core/arch/arm/plat-vexpress/ 53 F: core/arch/arm/plat-corstone1000/ 58 F: core/arch/plat-automotive_rd 63 F: core/arch/arm/plat-sunxi/ 67 F: core/arch/arm/plat-sunxi/ 73 F: core/arch/arm/plat-versal2/ 74 F: core/drivers/amd/ 79 F [all...] |
| /optee_os/core/lib/libtomcrypt/src/ciphers/ |
| H A D | camellia.c | 175 static ulong64 F(ulong64 x) in F() function 253 B ^= F(A ^ key_sigma[0]); in camellia_setup() 254 A ^= F(B ^ key_sigma[1]); in camellia_setup() 262 B ^= F(A ^ key_sigma[2]); in camellia_setup() 263 A ^= F(B ^ key_sigma[3]); in camellia_setup() 339 B ^= F(A ^ key_sigma[4]); in camellia_setup() 340 A ^= F(B ^ key_sigma[5]); in camellia_setup() 443 R ^= F(L ^ skey->camellia.k[0]); in camellia_ecb_encrypt() 444 L ^= F(R ^ skey->camellia.k[1]); in camellia_ecb_encrypt() 445 R ^= F(L ^ skey->camellia.k[2]); in camellia_ecb_encrypt() [all …]
|
| H A D | blowfish.c | 293 #define F(x) ((S1[LTC_BYTE(x,3)] + S2[LTC_BYTE(x,2)]) ^ S3[LTC_BYTE(x,1)]) + S4[LTC_BYTE(x,0)] macro 295 #define F(x) ((skey->blowfish.S[0][LTC_BYTE(x,3)] + skey->blowfish.S[1][LTC_BYTE(x,2)]) ^ skey->blo… macro 317 l ^= skey->blowfish.K[rounds++]; r ^= F(l); in s_blowfish_encipher() 318 r ^= skey->blowfish.K[rounds++]; l ^= F(r); in s_blowfish_encipher() 319 l ^= skey->blowfish.K[rounds++]; r ^= F(l); in s_blowfish_encipher() 320 r ^= skey->blowfish.K[rounds++]; l ^= F(r); in s_blowfish_encipher() 548 L ^= F(R); R ^= skey->blowfish.K[r--]; in s_blowfish_ecb_decrypt() 549 R ^= F(L); L ^= skey->blowfish.K[r--]; in s_blowfish_ecb_decrypt() 550 L ^= F(R); R ^= skey->blowfish.K[r--]; in s_blowfish_ecb_decrypt() 551 R ^= F(L); L ^= skey->blowfish.K[r--]; in s_blowfish_ecb_decrypt()
|
| H A D | kseed.c | 180 #define F(L1, L2, R1, R2, K1, K2) \ macro 238 F(P[0], P[1], P[2], P[3], K[0], K[1]); in rounds() 239 F(P[2], P[3], P[0], P[1], K[2], K[3]); in rounds()
|
| /optee_os/lib/libmbedtls/mbedtls/library/ |
| H A D | aes.c | 120 V(0D, F2, F2, FF), V(BD, 6B, 6B, D6), V(B1, 6F, 6F, DE), V(54, C5, C5, 91), \ 123 V(45, CA, CA, 8F), V(9D, 82, 82, 1F), V(40, C9, C9, 89), V(87, 7D, 7D, FA), \ 125 V(EC, AD, AD, 41), V(67, D4, D4, B3), V(FD, A2, A2, 5F), V(EA, AF, AF, 45), \ 128 V(5A, 36, 36, 6C), V(41, 3F, 3F, 7E), V(02, F7, F7, F5), V(4F, CC, CC, 83), \ 130 V(93, 71, 71, E2), V(73, D8, D8, AB), V(53, 31, 31, 62), V(3F, 15, 15, 2A), \ 132 V(28, 18, 18, 30), V(A1, 96, 96, 37), V(0F, 05, 05, 0A), V(B5, 9A, 9A, 2F), \ 134 V(26, EB, EB, CD), V(69, 27, 27, 4E), V(CD, B2, B2, 7F), V(9F, 75, 75, EA), \ 138 V(7B, 29, 29, 52), V(3E, E3, E3, DD), V(71, 2F, 2F, 5E), V(97, 84, 84, 13), \ 140 V(60, 20, 20, 40), V(1F, FC, FC, E3), V(C8, B1, B1, 79), V(ED, 5B, 5B, B6), \ 143 V(6B, D0, D0, BB), V(2A, EF, EF, C5), V(E5, AA, AA, 4F), V(16, FB, FB, ED), \ [all …]
|
| H A D | md5.c | 94 (a) += F((b), (c), (d)) + local.X[(k)] + (t); \ in mbedtls_internal_md5_process() 103 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) in mbedtls_internal_md5_process() macro 122 #undef F in mbedtls_internal_md5_process() 124 #define F(x, y, z) ((y) ^ ((z) & ((x) ^ (y)))) in mbedtls_internal_md5_process() macro 143 #undef F in mbedtls_internal_md5_process() 145 #define F(x, y, z) ((x) ^ (y) ^ (z)) in mbedtls_internal_md5_process() macro 164 #undef F in mbedtls_internal_md5_process() 166 #define F(x, y, z) ((y) ^ ((x) | ~(z))) in mbedtls_internal_md5_process() macro 185 #undef F in mbedtls_internal_md5_process()
|
| H A D | ripemd160.c | 118 P((a), (b), (c), (d), (e), (r), (s), F, K); \ in mbedtls_internal_ripemd160_process() 123 #define F F1 in mbedtls_internal_ripemd160_process() macro 143 #undef F in mbedtls_internal_ripemd160_process() 148 #define F F2 in mbedtls_internal_ripemd160_process() macro 168 #undef F in mbedtls_internal_ripemd160_process() 173 #define F F3 in mbedtls_internal_ripemd160_process() macro 193 #undef F in mbedtls_internal_ripemd160_process() 198 #define F F4 in mbedtls_internal_ripemd160_process() macro 218 #undef F in mbedtls_internal_ripemd160_process() 223 #define F F5 in mbedtls_internal_ripemd160_process() macro [all …]
|
| H A D | sha1.c | 103 (e) += S((a), 5) + F((b), (c), (d)) + K + (x); \ in mbedtls_internal_sha1_process() 113 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) in mbedtls_internal_sha1_process() macro 138 #undef F in mbedtls_internal_sha1_process() 140 #define F(x, y, z) ((x) ^ (y) ^ (z)) in mbedtls_internal_sha1_process() macro 165 #undef F in mbedtls_internal_sha1_process() 167 #define F(x, y, z) (((x) & (y)) | ((z) & ((x) | (y)))) in mbedtls_internal_sha1_process() macro 192 #undef F in mbedtls_internal_sha1_process() 194 #define F(x, y, z) ((x) ^ (y) ^ (z)) in mbedtls_internal_sha1_process() macro 219 #undef F in mbedtls_internal_sha1_process()
|
| /optee_os/core/arch/arm/dts/ |
| H A D | stm32mp15-pinctrl.dtsi | 11 pinmux = <STM32_PINMUX('F', 12, ANALOG)>; 18 <STM32_PINMUX('F', 12, ANALOG)>, /* ADC1 in6 */ 19 <STM32_PINMUX('F', 13, ANALOG)>, /* ADC2 in2 */ 20 <STM32_PINMUX('F', 14, ANALOG)>; /* ADC2 in6 */ 26 pinmux = <STM32_PINMUX('F', 12, ANALOG)>, /* ADC1 in6 */ 27 <STM32_PINMUX('F', 13, ANALOG)>; /* ADC2 in2 */ 518 <STM32_PINMUX('F', 15, AF5)>; /* I2C1_SDA */ 528 <STM32_PINMUX('F', 15, ANALOG)>; /* I2C1_SDA */ 534 pinmux = <STM32_PINMUX('F', 14, AF5)>, /* I2C1_SCL */ 535 <STM32_PINMUX('F', 15, AF5)>; /* I2C1_SDA */ [all …]
|
| H A D | stm32mp15xx-dhcor-avenger96.dtsi | 192 "", "", "AV96-E", "AV96-F";
|
| H A D | stm32mp15xx-dhcom-som.dtsi | 220 "", "", "", "DHCOM-F",
|
| /optee_os/core/crypto/ |
| H A D | sm3.c | 71 uint32_t A, B, C, D, E, F, G, H; in sm3_process() local 129 F = ctx->state[5]; in sm3_process() 137 TT2 = GG0(E, F, G) + H + SS1 + W[j]; in sm3_process() 143 G = ROTL(F, 19); in sm3_process() 144 F = E; in sm3_process() 152 TT2 = GG1(E, F, G) + H + SS1 + W[j]; in sm3_process() 158 G = ROTL(F, 19); in sm3_process() 159 F = E; in sm3_process() 168 ctx->state[5] ^= F; in sm3_process()
|
| /optee_os/core/drivers/bnxt/ |
| H A D | bnxt_fw.c | 335 #define F 34 /* Upper limit for match_length */ in ape_section_uncompress() macro 344 uint8_t text_buf[NS + F - 1]; in ape_section_uncompress() 349 for (i = 0; i < NS - F; i++) in ape_section_uncompress() 352 r = NS - F; in ape_section_uncompress()
|
| /optee_os/keys/ |
| H A D | default.pem | 22 6F+Gj+n6tlEcQY9Gy0BB/CS3I16xBuVivM5Uy/17RpeIBSmOkUY08i/8F85n98gs
|
| H A D | default_ta.pem | 22 6F+Gj+n6tlEcQY9Gy0BB/CS3I16xBuVivM5Uy/17RpeIBSmOkUY08i/8F85n98gs
|
| /optee_os/core/lib/libtomcrypt/src/hashes/ |
| H A D | md5.c | 31 #define F(x,y,z) (z ^ (x & (y ^ z))) macro 39 a = (a + F(b,c,d) + M + t); a = ROL(a, s) + b; 78 a = (a + F(b,c,d) + M + t); a = ROLc(a, s) + b;
|
| H A D | md4.c | 44 #define F(x, y, z) (z ^ (x & (y ^ z))) macro 55 (a) += F ((b), (c), (d)) + (x); \
|
| H A D | rmd128.c | 37 #define F(x, y, z) ((x) ^ (y) ^ (z)) macro 44 (a) += F((b), (c), (d)) + (x);\ 60 (a) += F((b), (c), (d)) + (x);\
|
| H A D | rmd256.c | 31 #define F(x, y, z) ((x) ^ (y) ^ (z)) macro 38 (a) += F((b), (c), (d)) + (x);\ 54 (a) += F((b), (c), (d)) + (x);\
|
| H A D | rmd160.c | 37 #define F(x, y, z) ((x) ^ (y) ^ (z)) macro 45 (a) += F((b), (c), (d)) + (x);\ 70 (a) += F((b), (c), (d)) + (x);\
|
| H A D | rmd320.c | 32 #define F(x, y, z) ((x) ^ (y) ^ (z)) macro 40 (a) += F((b), (c), (d)) + (x);\ 65 (a) += F((b), (c), (d)) + (x);\
|
| /optee_os/ta/ |
| H A D | link_shlib.mk | 51 $(q)ln -sf $(<F) $@
|
| /optee_os/core/arch/arm/crypto/ |
| H A D | ghash-ce-core_a32.S | 87 vmull.p8 t0q, t0l, \bd @ F = A1*B 96 veor t0q, t0q, t4q @ L = E + F
|
| /optee_os/lib/libmbedtls/mbedtls/ |
| H A D | ChangeLog | 2000 Key Wrapping mode as defined in NIST SP 800-38F. Fixes #4036. 3669 NIST SP 800-38F algorithms KW and KWP and by RFC 3394 and RFC 5649.
|