/optee_os-3.20.0/mk/ |
A D | subdir.mk | 26 define process-subdir-srcs-y 71 define process-subdir-gensrcs-helper 125 define process-subdir-gensrcs-y 126 $$(eval $$(call process-subdir-gensrcs-helper,$1,$(sub-dir-out)/$$(produce-$1),$(sub-dir-out)/$(bas… 129 define process-subdir-asm-defines-y 133 define process-subdir 153 $$(foreach g, $$(gensrcs-y), $$(eval $$(call process-subdir-gensrcs-y,$$(g)))) 154 $$(foreach s, $$(srcs-y), $$(eval $$(call process-subdir-srcs-y,$$(s)))) 155 $$(foreach a, $$(asm-defines-y), $$(eval $$(call process-subdir-asm-defines-y,$$(a)))) 179 $$(foreach sd, $$(call uniq,$$(sub-subdirs)), $$(eval $$(call process-subdir,$$(sd)))) [all …]
|
A D | lib.mk | 49 define process-lib 87 $(eval $(call process-lib))
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/misc/pkcs5/ |
A D | pkcs_5_1.c | 83 …if ((err = hash_descriptor[hash_idx]->process(md, buf, hash_descriptor[hash_idx]->hashsize)) != CR… in s_pkcs_5_alg1_common() 87 if ((err = hash_descriptor[hash_idx]->process(md, password, password_len)) != CRYPT_OK) { in s_pkcs_5_alg1_common() 90 if ((err = hash_descriptor[hash_idx]->process(md, salt, 8)) != CRYPT_OK) { in s_pkcs_5_alg1_common()
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/pk/pkcs1/ |
A D | pkcs_1_mgf1.c | 67 if ((err = hash_descriptor[hash_idx]->process(md, seed, seedlen)) != CRYPT_OK) { in pkcs_1_mgf1() 70 if ((err = hash_descriptor[hash_idx]->process(md, buf, 4)) != CRYPT_OK) { in pkcs_1_mgf1()
|
A D | pkcs_1_pss_decode.c | 132 if ((err = hash_descriptor[hash_idx]->process(&md, mask, 8)) != CRYPT_OK) { in pkcs_1_pss_decode() 135 if ((err = hash_descriptor[hash_idx]->process(&md, msghash, msghashlen)) != CRYPT_OK) { in pkcs_1_pss_decode() 138 if ((err = hash_descriptor[hash_idx]->process(&md, DB+x, saltlen)) != CRYPT_OK) { in pkcs_1_pss_decode()
|
A D | pkcs_1_pss_encode.c | 92 if ((err = hash_descriptor[hash_idx]->process(&md, DB, 8)) != CRYPT_OK) { in pkcs_1_pss_encode() 95 if ((err = hash_descriptor[hash_idx]->process(&md, msghash, msghashlen)) != CRYPT_OK) { in pkcs_1_pss_encode() 98 if ((err = hash_descriptor[hash_idx]->process(&md, salt, saltlen)) != CRYPT_OK) { in pkcs_1_pss_encode()
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/mac/hmac/ |
A D | hmac_done.c | 66 if ((err = hash_descriptor[hash]->process(&hmac->md, buf, LTC_HMAC_BLOCKSIZE)) != CRYPT_OK) { in hmac_done() 69 if ((err = hash_descriptor[hash]->process(&hmac->md, isha, hashsize)) != CRYPT_OK) { in hmac_done()
|
A D | hmac_process.c | 27 return hash_descriptor[hmac->hash]->process(&hmac->md, in, inlen); in hmac_process()
|
A D | hmac_init.c | 81 if ((err = hash_descriptor[hash]->process(&hmac->md, buf, LTC_HMAC_BLOCKSIZE)) != CRYPT_OK) { in hmac_init()
|
/optee_os-3.20.0/scripts/ |
A D | update_changelog.py | 49 process = Popen(cmd.split(), stdout=PIPE) 50 (output, err) = process.communicate()
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/hashes/helper/ |
A D | hash_memory.c | 46 if ((err = hash_descriptor[hash]->process(md, in, inlen)) != CRYPT_OK) { in hash_memory()
|
A D | hash_filehandle.c | 49 if ((err = hash_descriptor[hash]->process(&md, buf, (unsigned long)x)) != CRYPT_OK) { in hash_filehandle()
|
A D | hash_memory_multi.c | 58 if ((err = hash_descriptor[hash]->process(md, curptr, curlen)) != CRYPT_OK) { in hash_memory_multi()
|
/optee_os-3.20.0/lib/libmbedtls/mbedtls/ |
A D | SECURITY.md | 9 Our security process is detailed in our
|
A D | ChangeLog | 277 co-located process) could recover a Curve25519 or Curve448 static ECDH key 1168 the parent process closes the client socket and continue accepting, and 1169 the child process closes the listening socket and handles the client 1938 * Fix the Makefile build process for building shared libraries on Mac OS X. 3912 * Added ssl_handshake_step() to allow single stepping the handshake process 4200 t_int and t_dbl to t_uint and t_udbl in the process
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/prngs/ |
A D | yarrow.c | 149 if ((err = hash_descriptor[prng->u.yarrow.hash]->process(&md, prng->u.yarrow.pool, in yarrow_add_entropy() 155 if ((err = hash_descriptor[prng->u.yarrow.hash]->process(&md, in, inlen)) != CRYPT_OK) { in yarrow_add_entropy()
|
/optee_os-3.20.0/core/lib/libtomcrypt/ |
A D | hash.c | 51 if (hc->descr->process(&hc->state, data, len) == CRYPT_OK) in ltc_hash_update()
|
/optee_os-3.20.0/ta/ |
A D | ta.mk | 67 define process-arm32-user-sysreg 82 $(eval $(call process-arm32-user-sysreg,$(sr))))
|
/optee_os-3.20.0/core/arch/arm/ |
A D | arm.mk | 397 define process-arm32-sysreg 416 $(foreach sr, $(arm32-sysregs), $(eval $(call process-arm32-sysreg,$(sr))))
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/headers/ |
A D | tomcrypt_hash.h | 224 int (*process)(hash_state *hash, const unsigned char *in, unsigned long inlen); member
|
/optee_os-3.20.0/lib/libutils/isoc/ |
A D | bget.doc | 228 example, a <compact> function that released a buffer in the process of 239 allocation process will fail. <pool_incr> specifies the normal
|
/optee_os-3.20.0/ |
A D | CHANGELOG.md | 1282 * Generic driver: A new generic TEE driver is in the process of being
|