Home
last modified time | relevance | path

Searched refs:olen (Results 1 – 11 of 11) sorted by relevance

/mcuboot-latest/ext/tinycrypt/lib/include/tinycrypt/
Dccm_mode.h156 int tc_ccm_generation_encryption(uint8_t *out, unsigned int olen,
202 int tc_ccm_decryption_verification(uint8_t *out, unsigned int olen,
/mcuboot-latest/boot/bootutil/include/bootutil/crypto/
Drsa.h87 size_t *olen, in bootutil_rsa_oaep_decrypt() argument
109 output, output_max_len, olen); in bootutil_rsa_oaep_decrypt()
202 size_t *olen,
210 NULL, 0, olen, input, output, output_max_len);
213 NULL, 0, olen, input, output, output_max_len);
Daes_kw.h58 size_t olen; in bootutil_aes_kw_unwrap() local
59 …return mbedtls_nist_kw_unwrap(ctx, MBEDTLS_KW_MODE_KW, wrapped_key, wrapped_key_len, key, &olen, k… in bootutil_aes_kw_unwrap()
/mcuboot-latest/ext/tinycrypt/lib/source/
Dccm_mode.c137 int tc_ccm_generation_encryption(uint8_t *out, unsigned int olen, in tc_ccm_generation_encryption() argument
150 (olen < (plen + c->mlen))) { /* invalid output buffer size */ in tc_ccm_generation_encryption()
198 int tc_ccm_decryption_verification(uint8_t *out, unsigned int olen, in tc_ccm_decryption_verification() argument
211 (olen < plen - c->mlen)) { /* invalid output buffer size */ in tc_ccm_decryption_verification()
/mcuboot-latest/ext/mbedtls-asn1/include/mbedtls/
Doid.h494 const char **oid, size_t *olen );
517 const char **oid, size_t *olen );
554 const char **oid, size_t *olen );
608 int mbedtls_oid_get_oid_by_md( mbedtls_md_type_t md_alg, const char **oid, size_t *olen );
Drsa.h690 size_t *olen,
727 size_t *olen,
769 size_t *olen,
Dpk.h230 typedef int (*mbedtls_pk_rsa_alt_decrypt_func)( void *ctx, size_t *olen,
574 unsigned char *output, size_t *olen, size_t osize,
597 unsigned char *output, size_t *olen, size_t osize,
Decp.h741 int format, size_t *olen,
816 int format, size_t *olen,
898 size_t *olen,
Dbignum.h433 char *buf, size_t buflen, size_t *olen );
/mcuboot-latest/sim/mcuboot-sys/csupport/
Drun.c198 size_t olen; in kw_encrypt_() local
211 &olen, out_size); in kw_encrypt_()
/mcuboot-latest/boot/bootutil/src/
Dencrypted.c439 size_t olen; in boot_decrypt_key() local
484 rc = bootutil_rsa_oaep_decrypt(&rsa, &olen, buf, enckey, BOOT_ENC_KEY_SIZE); in boot_decrypt_key()