Home
last modified time | relevance | path

Searched refs:update (Results 1 – 25 of 55) sorted by relevance

123

/optee_os/core/lib/libtomcrypt/
H A Dctr.c17 int (*update)(const unsigned char *src, unsigned char *dst, member
44 c->update = ctr_encrypt; in ltc_ctr_init()
46 c->update = ctr_decrypt; in ltc_ctr_init()
61 if (c->update && c->update(data, dst, len, &c->state) == CRYPT_OK) in ltc_ctr_update()
84 dst->update = src->update; in ltc_ctr_copy_state()
90 .update = ltc_ctr_update,
H A Dxts.c19 int (*update)(const unsigned char *src, unsigned long len, member
58 c->update = xts_encrypt; in ltc_xts_init()
60 c->update = xts_decrypt; in ltc_xts_init()
76 if (c->update && c->update(data, len, dst, c->tweak, in ltc_xts_update()
100 dst->update = src->update; in ltc_xts_copy_state()
107 .update = ltc_xts_update,
H A Dcbc.c20 int (*update)(const unsigned char *src, unsigned char *dst, member
49 c->update = cbc_encrypt; in ltc_cbc_init()
51 c->update = cbc_decrypt; in ltc_cbc_init()
68 if (c->update && c->update(data, dst, len, &c->state) == CRYPT_OK) in ltc_cbc_update()
91 dst->update = src->update; in ltc_cbc_copy_state()
97 .update = ltc_cbc_update,
H A Decb.c20 int (*update)(const unsigned char *src, unsigned char *dst, member
47 c->update = ecb_encrypt; in ltc_ecb_init()
49 c->update = ecb_decrypt; in ltc_ecb_init()
66 if (c->update && c->update(data, dst, len, &c->state) == CRYPT_OK) in ltc_ecb_update()
89 dst->update = src->update; in ltc_ecb_copy_state()
95 .update = ltc_ecb_update,
H A Dshake.c93 .update = do_sha3_update,
113 .update = do_sha3_update,
H A Dcmac.c80 .update = ltc_omac_update,
/optee_os/scripts/
H A Dnotify_maintainers.py61 allh.update(handles)
62 allh.update(the_rest_handles)
115 existing_handles.update(re.findall(r"@([\w-]+)", comment.body))
124 skip_handles.update(a.login for a in pr.assignees)
126 skip_handles.update(r.login for r in requested_reviewers)
H A Dderive_rpmb_key.py73 h.update(usage_word)
74 h.update(data)
H A Dprint_tee_hash.py43 h.update(segment.data()[begin_offs:begin_offs + size])
54 h.update(d)
H A Dsign_encrypt.py46 h.update(namespace_bytes + bytes(name, 'utf-8'))
379 h.update(self.shdr)
381 h.update(self.ta_uuid)
382 h.update(self.ta_version)
384 h.update(self.ehdr)
385 h.update(self.nonce)
386 h.update(self.tag)
387 h.update(self.img)
/optee_os/mk/
H A Dmacros.mk11 define update-buildcount
31 $(call update-buildcount,$(link-out-dir)/.buildcount)
/optee_os/core/drivers/crypto/stm32/
H A Dcipher.c51 TEE_Result (*update)(union ip_ctx *ctx, bool last_block, uint8_t *src, member
102 .update = cryp_update,
158 return ctx->ops->update(ctx, last_block, src, len, dst); in saes_update()
192 .update = saes_update,
219 return c->ops->update(&c->ip_ctx, dupdate->last, dupdate->src.data, in stm32_cipher_update()
349 .update = stm32_cipher_update,
358 .update = stm32_cipher_update,
/optee_os/core/drivers/crypto/se050/core/
H A Dcipher.c34 return ctx->ops->update(ctx, dupdate->last, dupdate->src.data, in do_update()
74 .update = do_update,
/optee_os/core/drivers/crypto/crypto_api/cipher/
H A Dcipher.c132 if (cipher->op && cipher->op->update) { in cipher_update()
142 ret = cipher->op->update(&dupdate); in cipher_update()
164 .update = cipher_update,
/optee_os/core/drivers/crypto/caam/cipher/
H A Dcaam_cipher.c36 .update = do_update_cipher,
45 .update = do_update_cipher,
54 .update = do_update_streaming,
66 .update = caam_cipher_update_xts,
81 .update = do_update_cipher,
90 .update = do_update_cipher,
105 .update = do_update_cipher,
115 .update = do_update_cipher,
823 return cipherdata->alg->update(dupdate); in do_update()
842 .update = do_update,
H A Dcaam_cipher_mac.c37 .update = do_update_mac,
51 .update = do_update_cmac,
68 .update = do_update_mac,
85 .update = do_update_mac,
645 ret = macdata->alg->update(&dupdate); in do_cmac_update()
697 ret = macdata->alg->update(&dupdate); in do_cmac_final()
742 .update = do_cmac_update,
H A Dlocal.h42 TEE_Result (*update)(struct drvcrypt_cipher_update *dupdate); member
/optee_os/core/drivers/crypto/crypto_api/include/
H A Ddrvcrypt_cipher.h55 TEE_Result (*update)(struct drvcrypt_cipher_update *dupdate); member
/optee_os/.devcontainer/
H A DDockerfile.vscode4 RUN apt update && apt upgrade -y && apt-get install -y \
/optee_os/core/crypto/
H A Dsm3-hash.c94 .update = op_sm3_hash_update,
H A Dsm4-ecb.c84 .update = sm4_ecb_update,
H A Dsm4-ctr.c86 .update = sm4_ctr_update,
H A Dsm3-hmac.c93 .update = op_sm3_hmac_update,
H A Dsm4-cbc.c89 .update = sm4_cbc_update,
/optee_os/lib/libmbedtls/core/
H A Ddes_ecb.c99 .update = mbed_des_ecb_update,

123