| /src/crypto/openssl/test/recipes/30-test_evp_data/ |
| H A D | evpciph_aes_ccm_cavs.txt | 13 Cipher = aes-128-ccm 21 Cipher = aes-128-ccm 31 Cipher = aes-128-ccm 41 Cipher = aes-128-ccm 51 Cipher = aes-128-ccm 59 Cipher = aes-128-ccm 69 Cipher = aes-128-ccm 79 Cipher = aes-128-ccm 89 Cipher = aes-128-ccm 99 Cipher = aes-128-ccm [all …]
|
| /src/crypto/openssl/providers/implementations/ciphers/ |
| H A D | cipher_aes_ccm_hw_s390x.inc | 22 sctx->ccm.s390x.fc = S390X_AES_FC(keylen); 23 memcpy(&sctx->ccm.s390x.kmac.k, key, keylen); 25 sctx->ccm.s390x.nonce.b[0] = ((ctx->l - 1) & 0x7) 27 memset(sctx->ccm.s390x.nonce.b + 1, 0, sizeof(sctx->ccm.s390x.nonce.b)); 28 sctx->ccm.s390x.blocks = 0; 39 sctx->ccm.s390x.nonce.b[0] &= ~S390X_CCM_AAD_FLAG; 40 sctx->ccm.s390x.nonce.g[1] = mlen; 41 memcpy(sctx->ccm.s390x.nonce.b + 1, nonce, 15 - ctx->l); 58 sctx->ccm.s390x.nonce.b[0] |= S390X_CCM_AAD_FLAG; 61 ptr = sctx->ccm.s390x.buf.b; [all …]
|
| H A D | cipher_aes_ccm.c | 54 dupctx->base.ccm_ctx.key = &dupctx->ccm.ks.ks; in aes_ccm_dupctx() 68 IMPLEMENT_aead_cipher(aes, ccm, CCM, AEAD_FLAGS, 128, 8, 96); 70 IMPLEMENT_aead_cipher(aes, ccm, CCM, AEAD_FLAGS, 192, 8, 96); 72 IMPLEMENT_aead_cipher(aes, ccm, CCM, AEAD_FLAGS, 256, 8, 96);
|
| H A D | cipher_aria_ccm.c | 54 IMPLEMENT_aead_cipher(aria, ccm, CCM, AEAD_FLAGS, 128, 8, 96); 56 IMPLEMENT_aead_cipher(aria, ccm, CCM, AEAD_FLAGS, 192, 8, 96); 58 IMPLEMENT_aead_cipher(aria, ccm, CCM, AEAD_FLAGS, 256, 8, 96);
|
| H A D | cipher_aes_ccm_hw.c | 21 fn_set_enc_key(key, keylen * 8, &actx->ccm.ks.ks); \ 22 CRYPTO_ccm128_init(&ctx->ccm_ctx, ctx->m, ctx->l, &actx->ccm.ks.ks, \
|
| H A D | cipher_aes_ccm.h | 45 } ccm; member
|
| H A D | cipher_sm4_ccm.c | 54 IMPLEMENT_aead_cipher(sm4, ccm, CCM, AEAD_FLAGS, 128, 8, 96);
|
| /src/crypto/openssl/test/ |
| H A D | quic_cc_test.c | 95 const OSSL_CC_METHOD *ccm; member 108 const OSSL_CC_METHOD *ccm, OSSL_CC_DATA *cc, in net_sim_init() argument 111 s->ccm = ccm; in net_sim_init() 187 if (!TEST_true(s->ccm->on_data_sent(s->cc, sz))) in net_sim_send() 237 if (!TEST_true(s->ccm->on_data_lost(s->cc, &loss_info))) in net_sim_process_one() 240 if (!TEST_true(s->ccm->on_data_lost_finished(s->cc, 0))) in net_sim_process_one() 252 if (!TEST_true(s->ccm->on_data_acked(s->cc, &ack_info))) in net_sim_process_one() 284 static int dump_state(const OSSL_CC_METHOD *ccm, OSSL_CC_DATA *cc, in dump_state() argument 293 if (!TEST_true(ccm->get_option_uint(cc, OSSL_CC_OPTION_CUR_CWND_SIZE, in dump_state() 297 if (!TEST_true(ccm->get_option_uint(cc, OSSL_CC_OPTION_CUR_BYTES_IN_FLIGHT, in dump_state() [all …]
|
| H A D | evp_libctx_test.c | 350 int ret = 0, diff, ccm, siv, no_null_key; in test_cipher_reinit() local 445 ccm = (EVP_CIPHER_get_mode(cipher) == EVP_CIPH_CCM_MODE); in test_cipher_reinit() 464 ccm ? 0 : 1) in test_cipher_reinit() 468 ccm || siv ? 0 : 1)))) in test_cipher_reinit() 471 if (ccm == 0) { in test_cipher_reinit()
|
| /src/crypto/openssl/crypto/evp/ |
| H A D | e_aes.c | 91 CCM128_CONTEXT ccm; member 341 CRYPTO_ccm128_init(&cctx->ccm, cctx->M, cctx->L, in aesni_ccm_init_key() 727 CRYPTO_ccm128_init(&cctx->ccm, cctx->M, cctx->L, in aes_t4_ccm_init_key() 1011 } ccm; member 1802 ctx->aes.ccm.nonce.b[0] &= ~S390X_CCM_AAD_FLAG; in s390x_aes_ccm_setiv() 1803 ctx->aes.ccm.nonce.g[1] = mlen; in s390x_aes_ccm_setiv() 1804 memcpy(ctx->aes.ccm.nonce.b + 1, nonce, 15 - ctx->aes.ccm.l); in s390x_aes_ccm_setiv() 1819 ctx->aes.ccm.nonce.b[0] |= S390X_CCM_AAD_FLAG; in s390x_aes_ccm_aad() 1822 ptr = ctx->aes.ccm.buf.b; in s390x_aes_ccm_aad() 1839 ctx->aes.ccm.buf.b[i] = *aad; in s390x_aes_ccm_aad() [all …]
|
| H A D | e_aria.c | 56 CCM128_CONTEXT ccm; member 522 CRYPTO_ccm128_init(&cctx->ccm, cctx->M, cctx->L, in aria_ccm_init_key() 613 if (!CRYPTO_ccm128_tag(&cctx->ccm, ptr, (size_t)arg)) in aria_ccm_ctrl() 623 if (cctx->ccm.key) { in aria_ccm_ctrl() 624 if (cctx->ccm.key != &cctx->ks) in aria_ccm_ctrl() 626 cctx_out->ccm.key = &cctx_out->ks; in aria_ccm_ctrl() 640 CCM128_CONTEXT *ccm = &cctx->ccm; in aria_ccm_tls_cipher() local 654 if (CRYPTO_ccm128_setiv(ccm, ctx->iv, 15 - cctx->L, in aria_ccm_tls_cipher() 658 CRYPTO_ccm128_aad(ccm, EVP_CIPHER_CTX_buf_noconst(ctx), in aria_ccm_tls_cipher() 664 if (cctx->str ? CRYPTO_ccm128_encrypt_ccm64(ccm, in, out, len, cctx->str) in aria_ccm_tls_cipher() [all …]
|
| /src/sys/contrib/device-tree/Bindings/clock/ |
| H A D | vf610-clock.txt | 4 - compatible: Should be "fsl,vf610-ccm" 27 clks: ccm@4006b000 { 28 compatible = "fsl,vf610-ccm";
|
| /src/sys/contrib/device-tree/Bindings/pinctrl/ |
| H A D | brcm,iproc-gpio.txt | 13 "brcm,cygnus-ccm-gpio", "brcm,cygnus-asiu-gpio", or 74 compatible = "brcm,cygnus-ccm-gpio";
|
| /src/contrib/bmake/mk/ |
| H A D | autodep.mk | 29 CXX_SUFFIXES ?= .cc .ccm .cpp .cxx .C 217 .-include <ccm.dep.mk>
|
| H A D | auto.dep.mk | 82 .-include <ccm.dep.mk>
|
| H A D | FILES | 10 ccm.dep.mk
|
| H A D | sys.mk | 45 CCM_SUFFIXES += .ccm
|
| H A D | init.mk | 30 CCM_SUFFIXES ?= .ccm
|
| H A D | dep.mk | 105 .-include <ccm.dep.mk>
|
| /src/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/ |
| H A D | tst.encryption.zcp | 22 assert(zfs.get_prop(argv[1], "encryption") == "aes-256-ccm")
|
| /src/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_status/ |
| H A D | zpool_status_005_pos.ksh | 66 log_must zfs create -o encryption=aes-256-ccm -o keyformat=passphrase \
|
| /src/sys/contrib/device-tree/src/arm/nxp/imx/ |
| H A D | imx1.dtsi | 199 clks: ccm@21b000 { 200 compatible = "fsl,imx1-ccm";
|
| H A D | imx31.dtsi | 235 clks: ccm@53f80000 { 236 compatible = "fsl,imx31-ccm";
|
| H A D | imx35.dtsi | 209 clks: ccm@53f80000 { 210 compatible = "fsl,imx35-ccm";
|
| /src/contrib/wpa/src/crypto/ |
| H A D | Makefile | 12 aes-ccm.o \
|