Home
last modified time | relevance | path

Searched defs:nonce (Results 76 - 100 of 299) sorted by relevance

12345678910>>...12

/kernel/linux/linux-5.10/net/dccp/
H A Doptions.c405 u8 i, nonce = 0; in dccp_insert_option_ackvec() local
H A Dackvec.c347 int dccp_ackvec_parsed_add(struct list_head *head, u8 *vec, u8 len, u8 nonce) in dccp_ackvec_parsed_add() argument
/kernel/linux/linux-6.6/fs/crypto/
H A Dkeysetup.c705 u8 nonce[FSCRYPT_FILE_NONCE_SIZE]; in fscrypt_prepare_new_inode() local
553 fscrypt_setup_encryption_info(struct inode *inode, const union fscrypt_policy *policy, const u8 nonce[FSCRYPT_FILE_NONCE_SIZE], bool need_dirhash_key) fscrypt_setup_encryption_info() argument
H A Dkeysetup_v1.c47 derive_key_aes(const u8 *master_key, const u8 nonce[FSCRYPT_FILE_NONCE_SIZE], u8 *derived_key, unsigned int derived_keysize) derive_key_aes() argument
/kernel/linux/linux-6.6/drivers/platform/x86/hp/hp-bioscfg/
H A Dspmobj-attributes.c28 u32 nonce; member
/kernel/linux/linux-6.6/drivers/crypto/caam/
H A Dcaamalg_desc.c210 init_sh_desc_key_aead(u32 * const desc, struct alginfo * const cdata, struct alginfo * const adata, const bool is_rfc3686, u32 *nonce, int era) init_sh_desc_key_aead() argument
288 cnstr_shdsc_aead_encap(u32 * const desc, struct alginfo *cdata, struct alginfo *adata, unsigned int ivsize, unsigned int icvsize, const bool is_rfc3686, u32 *nonce, const u32 ctx1_iv_off, const bool is_qi, int era) cnstr_shdsc_aead_encap() argument
383 cnstr_shdsc_aead_decap(u32 * const desc, struct alginfo *cdata, struct alginfo *adata, unsigned int ivsize, unsigned int icvsize, const bool geniv, const bool is_rfc3686, u32 *nonce, const u32 ctx1_iv_off, const bool is_qi, int era) cnstr_shdsc_aead_decap() argument
500 cnstr_shdsc_aead_givencap(u32 * const desc, struct alginfo *cdata, struct alginfo *adata, unsigned int ivsize, unsigned int icvsize, const bool is_rfc3686, u32 *nonce, const u32 ctx1_iv_off, const bool is_qi, int era) cnstr_shdsc_aead_givencap() argument
1398 const u8 *nonce = cdata->key_virt + cdata->keylen; cnstr_shdsc_skcipher_encap() local
1473 const u8 *nonce = cdata->key_virt + cdata->keylen; cnstr_shdsc_skcipher_decap() local
[all...]
/kernel/linux/linux-6.6/arch/x86/crypto/
H A Dpoly1305_glue.c123 poly1305_simd_emit(void *ctx, u8 mac[POLY1305_DIGEST_SIZE], const u32 nonce[4]) poly1305_simd_emit() argument
/kernel/linux/linux-6.6/crypto/
H A Dctr.c20 u8 nonce[CTR_RFC3686_NONCE_SIZE]; member
/kernel/linux/linux-6.6/security/keys/trusted-keys/
H A Dtrusted_tpm2.c199 tpm2_buf_append_auth(struct tpm_buf *buf, u32 session_handle, const u8 *nonce, u16 nonce_len, u8 attributes, const u8 *hmac, u16 hmac_len) tpm2_buf_append_auth() argument
/kernel/linux/linux-6.6/net/dccp/
H A Doptions.c405 u8 i, nonce = 0; in dccp_insert_option_ackvec() local
H A Dackvec.c352 int dccp_ackvec_parsed_add(struct list_head *head, u8 *vec, u8 len, u8 nonce) in dccp_ackvec_parsed_add() argument
/kernel/linux/linux-6.6/net/mac80211/
H A Dwpa.c1021 u8 nonce[GMAC_NONCE_LEN]; in ieee80211_crypto_aes_gmac_encrypt() local
1067 u8 aad[GMAC_AAD_LEN], *mic, ipn[6], nonce[GMAC_NONCE_LEN]; in ieee80211_crypto_aes_gmac_decrypt() local
/third_party/f2fs-tools/fsck/
H A Dxattr.h49 u8 nonce[FS_KEY_DERIVATION_NONCE_SIZE]; member
/third_party/libwebsockets/lib/jose/jwe/
H A Djwe.c548 lws_jwe_create_packet(struct lws_jwe *jwe, const char *payload, size_t len, const char *nonce, char *out, size_t out_len, struct lws_context *context) lws_jwe_create_packet() argument
/third_party/mbedtls/library/
H A Dchachapoly.c104 mbedtls_chachapoly_starts(mbedtls_chachapoly_context *ctx, const unsigned char nonce[12], mbedtls_chachapoly_mode_t mode) mbedtls_chachapoly_starts() argument
244 chachapoly_crypt_and_tag(mbedtls_chachapoly_context *ctx, mbedtls_chachapoly_mode_t mode, size_t length, const unsigned char nonce[12], const unsigned char *aad, size_t aad_len, const unsigned char *input, unsigned char *output, unsigned char tag[16]) chachapoly_crypt_and_tag() argument
277 mbedtls_chachapoly_encrypt_and_tag(mbedtls_chachapoly_context *ctx, size_t length, const unsigned char nonce[12], const unsigned char *aad, size_t aad_len, const unsigned char *input, unsigned char *output, unsigned char tag[16]) mbedtls_chachapoly_encrypt_and_tag() argument
291 mbedtls_chachapoly_auth_decrypt(mbedtls_chachapoly_context *ctx, size_t length, const unsigned char nonce[12], const unsigned char *aad, size_t aad_len, const unsigned char tag[16], const unsigned char *input, unsigned char *output) mbedtls_chachapoly_auth_decrypt() argument
H A Dpsa_crypto_aead.c117 mbedtls_psa_aead_encrypt( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *nonce, size_t nonce_length, const uint8_t *additional_data, size_t additional_data_length, const uint8_t *plaintext, size_t plaintext_length, uint8_t *ciphertext, size_t ciphertext_size, size_t *ciphertext_length) mbedtls_psa_aead_encrypt() argument
229 mbedtls_psa_aead_decrypt( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *nonce, size_t nonce_length, const uint8_t *additional_data, size_t additional_data_length, const uint8_t *ciphertext, size_t ciphertext_length, uint8_t *plaintext, size_t plaintext_size, size_t *plaintext_length) mbedtls_psa_aead_decrypt() argument
362 mbedtls_psa_aead_set_nonce( mbedtls_psa_aead_operation_t *operation, const uint8_t *nonce, size_t nonce_length) mbedtls_psa_aead_set_nonce() argument
[all...]
/third_party/libcoap/src/oscore/
H A Doscore_cose.c411 cose_encrypt0_set_nonce(cose_encrypt0_t *ptr, coap_bin_const_t *nonce) { in cose_encrypt0_set_nonce() argument
[all...]
/third_party/libcoap/tests/
H A Dtest_oscore.c68 coap_bin_const_t nonce = { 13, nonce_buffer }; in t_oscore_c_1_1() local
132 coap_bin_const_t nonce = { 13, nonce_buffer }; in t_oscore_c_1_2() local
195 coap_bin_const_t nonce = { 13, nonce_buffer }; in t_oscore_c_2_1() local
258 coap_bin_const_t nonce in t_oscore_c_2_2() local
323 coap_bin_const_t nonce = { 13, nonce_buffer }; t_oscore_c_3_1() local
388 coap_bin_const_t nonce = { 13, nonce_buffer }; t_oscore_c_3_2() local
[all...]
/third_party/libcoap/include/oscore/
H A Doscore_context.h148 coap_bin_const_t *nonce; member
/third_party/node/deps/openssl/openssl/providers/implementations/rands/
H A Ddrbg_hmac.c122 drbg_hmac_instantiate(PROV_DRBG *drbg, const unsigned char *ent, size_t ent_len, const unsigned char *nonce, size_t nonce_len, const unsigned char *pstr, size_t pstr_len) drbg_hmac_instantiate() argument
H A Dtest_rng.c45 unsigned char *entropy, *nonce; member
/third_party/node/deps/openssl/openssl/crypto/ts/
H A Dts_local.h46 ASN1_INTEGER *nonce; member
90 ASN1_INTEGER *nonce; member
149 ASN1_INTEGER *nonce; member
H A Dts_req_utils.c100 int TS_REQ_set_nonce(TS_REQ *a, const ASN1_INTEGER *nonce) in TS_REQ_set_nonce() argument
/third_party/node/deps/openssl/openssl/crypto/evp/
H A De_chacha20_poly1305.c155 unsigned int nonce[12/4]; member
[all...]
/third_party/node/deps/openssl/openssl/crypto/modes/
H A Docb128.c221 unsigned char stretch[24], nonce[16]; in CRYPTO_ocb128_setiv() local

Completed in 20 milliseconds

12345678910>>...12