Searched refs:key_bytes (Results 1 - 8 of 8) sorted by relevance
/third_party/mbedtls/programs/psa/ |
H A D | hmac_demo.c | 71 const unsigned char key_bytes[32] = { 0 }; variable 110 /* PSA_MAC_LENGTH(PSA_KEY_TYPE_HMAC, 8 * sizeof( key_bytes ), alg) in hmac_demo() 120 psa_set_key_bits(&attributes, 8 * sizeof(key_bytes)); // optional in hmac_demo() 123 key_bytes, sizeof(key_bytes), &key); in hmac_demo()
|
H A D | aead_demo.c | 94 const unsigned char key_bytes[32] = { 0x2a }; variable 168 PSA_CHECK(psa_import_key(&attributes, key_bytes, key_bits / 8, key)); in aead_prepare()
|
/third_party/mbedtls/programs/hash/ |
H A D | md_hmac_demo.c | 69 const unsigned char key_bytes[32] = { 0 }; variable 116 CHK(mbedtls_md_hmac_starts(&ctx, key_bytes, sizeof(key_bytes))); in hmac_demo()
|
/third_party/libwebsockets/lib/tls/mbedtls/ |
H A D | lws-genec.c | 82 el[LWS_GENCRYPTO_EC_KEYEL_D].len != curve->key_bytes) || in lws_genec_keypair_import() 83 el[LWS_GENCRYPTO_EC_KEYEL_X].len != curve->key_bytes || in lws_genec_keypair_import() 84 el[LWS_GENCRYPTO_EC_KEYEL_Y].len != curve->key_bytes) in lws_genec_keypair_import() 294 el[n].len = curve->key_bytes; in lws_genecdh_new_keypair() 295 el[n].buf = lws_malloc(curve->key_bytes, "ec"); in lws_genecdh_new_keypair() 300 curve->key_bytes)) in lws_genecdh_new_keypair() 368 el[n].len = curve->key_bytes; in lws_genecdsa_new_keypair() 369 el[n].buf = lws_malloc(curve->key_bytes, "ec"); in lws_genecdsa_new_keypair()
|
/third_party/libwebsockets/lib/tls/openssl/ |
H A D | lws-genec.c | 237 el[LWS_GENCRYPTO_EC_KEYEL_D].len != curve->key_bytes) || in lws_genec_keypair_import() 238 el[LWS_GENCRYPTO_EC_KEYEL_X].len != curve->key_bytes || in lws_genec_keypair_import() 239 el[LWS_GENCRYPTO_EC_KEYEL_Y].len != curve->key_bytes) in lws_genec_keypair_import() 426 el[n].len = curve->key_bytes; in lws_genec_new_keypair() 427 el[n].buf = lws_malloc(curve->key_bytes, "ec"); in lws_genec_new_keypair()
|
/third_party/mbedtls/programs/cipher/ |
H A D | cipher_aead_demo.c | 91 const unsigned char key_bytes[32] = { 0x2a }; variable 157 CHK(mbedtls_cipher_setkey(ctx, key_bytes, key_len, MBEDTLS_ENCRYPT)); in aead_prepare()
|
/third_party/libwebsockets/include/libwebsockets/ |
H A D | lws-genec.h | 63 uint16_t key_bytes; member
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | cms.rs | 377 let key_bytes = include_bytes!("../test/key.pem"); in cms_sign_verify_generic_helper() 378 let key = PKey::private_key_from_pem(key_bytes).expect("failed to load key.pem"); in cms_sign_verify_generic_helper()
|
Completed in 5 milliseconds