Searched refs:iv (Results 251 - 275 of 281) sorted by relevance

<<1112

/freebsd-11-stable/crypto/openssl/ssl/
H A Ds3_srvr.c2485 unsigned char iv[EVP_MAX_IV_LENGTH]; local
2582 memset(iv, 0, sizeof(iv)); /* per RFC 1510 */
2584 if (!EVP_DecryptInit_ex(&ciph_ctx, enc, NULL, kssl_ctx->key, iv)) {
3450 unsigned char iv[EVP_MAX_IV_LENGTH]; local
3501 * 16 (key name) + max_iv_len (iv length) +
3517 int ret = tctx->tlsext_ticket_key_cb(s, key_name, iv, &ctx,
3534 if (RAND_bytes(iv, 16) <= 0)
3537 tctx->tlsext_tick_aes_key, iv))
3559 memcpy(p, iv, EVP_CIPHER_CTX_iv_lengt
[all...]
H A Ds3_clnt.c2611 unsigned char iv[EVP_MAX_IV_LENGTH]; local
2699 * EVP_EncryptInit_ex(&ciph_ctx,NULL, key,iv);
2702 memset(iv, 0, sizeof(iv)); /* per RFC 1510 */
2703 EVP_EncryptInit_ex(&ciph_ctx, enc, NULL, kssl_ctx->key, iv);
H A Dssl.h1084 unsigned char *name, unsigned char *iv,
/freebsd-11-stable/contrib/wpa/src/crypto/
H A Dcrypto_nettle.c412 const u8 *iv, const u8 *key,
411 crypto_cipher_init(enum crypto_cipher_alg alg, const u8 *iv, const u8 *key, size_t key_len) argument
H A Dcrypto_module_tests.c352 u8 iv[16]; member in struct:cbc_test_vector
397 if (aes_128_cbc_encrypt(tv->key, tv->iv, buf, tv->len) ||
404 if (aes_128_cbc_decrypt(tv->key, tv->iv, buf, tv->len) ||
/freebsd-11-stable/contrib/ntp/ntpd/
H A Drefclock_parse.c4902 const char **iv; local
4904 iv = taipinit;
4905 while (*iv)
4907 int rtc = (int) write(parse->generic->io.fd, *iv, strlen(*iv));
4915 if (rtc != (int)strlen(*iv))
4918 CLK_UNIT(parse->peer), rtc, (int)strlen(*iv));
4922 iv++;
5031 int iv; member in union:uval
/freebsd-11-stable/contrib/wpa/src/eap_server/
H A Deap_server_sim.c639 if (attr->encr_data == NULL || attr->iv == NULL) {
646 attr->encr_data_len, attr->iv, &eattr,
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_zip.c242 uint8_t *iv; member in struct:zip
2444 free(zip->iv);
2445 zip->iv = NULL;
2450 if (zip->iv == NULL) {
2451 zip->iv = malloc(zip->iv_size);
2452 if (zip->iv == NULL)
2455 memcpy(zip->iv, p, zip->iv_size);
2970 free(zip->iv);
/freebsd-11-stable/sys/dev/safe/
H A Dsafe.c854 caddr_t iv; local
1001 iv = enccrd->crd_iv;
1003 iv = (caddr_t) ses->ses_iv;
1006 enccrd->crd_inject, ivsize, iv);
1008 bcopy(iv, re->re_sastate.sa_saved_iv, ivsize);
2168 printf("sr: iv %x %x %x %x\n"
/freebsd-11-stable/sys/dev/iwm/
H A Dif_iwm.c1287 struct iwm_vap *iv = IWM_VAP(vap); local
1288 iv->phy_ctxt = NULL;
1289 iv->is_uploaded = 0;
3962 struct iwm_vap *iv = IWM_VAP(vap); local
4021 if (iv->is_uploaded) {
4033 iv->phy_ctxt = &sc->sc_phyctxt[0];
4035 if ((error = iwm_mvm_binding_add_vif(sc, iv)) != 0) {
4064 iv->phy_ctxt = &sc->sc_phyctxt[0];
4066 if ((error = iwm_mvm_binding_add_vif(sc, iv)) != 0) {
4084 iwm_mvm_protect_session(sc, iv, duratio
[all...]
/freebsd-11-stable/contrib/mdocml/
H A Droff.c2651 int iv; local
2667 if (roff_evalnum(r, ln, val, NULL, &iv, ROFFNUM_SCALE))
2668 roff_setreg(r, key, iv, sign);
2725 int iv; local
2729 if ( ! roff_evalnum(r, ln, buf->buf, &pos, &iv, 0)) {
2744 roffit_lines = iv;
2745 roffit_macro = mandoc_strdup(iv != 1 ||
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-pip.h526 pip_crc_ivx.s.iv = initialization_vector;
H A Dcvmx-pko-defs.h2774 uint64_t iv : 32; /**< IV used by the CRC algorithm. Default is FCS32. */ member in struct:cvmx_pko_reg_crc_ivx::cvmx_pko_reg_crc_ivx_s
2776 uint64_t iv : 32;
/freebsd-11-stable/crypto/openssl/crypto/pem/
H A Dpem.h162 /* char iv[8]; unused and wrong size */
178 unsigned char iv[8]; */
199 unsigned char iv[8]; */
434 unsigned char *iv, EVP_PKEY **pubk, int npubk);
/freebsd-11-stable/crypto/openssl/
H A Dconfig493 (cc) 2>&1 | grep -iv "not found" > /dev/null && CC=cc
/freebsd-11-stable/sys/dev/hifn/
H A Dhifn7751.c1648 bcopy(cmd->iv, buf_pos, ivlen);
2568 bcopy(enccrd->crd_iv, cmd->iv, ivlen);
2571 cmd->iv, ivlen);
2577 ivlen, cmd->iv);
2581 bcopy(enccrd->crd_iv, cmd->iv, ivlen);
2585 ivlen, cmd->iv);
/freebsd-11-stable/crypto/openssl/crypto/modes/
H A Dgcm128.c891 void CRYPTO_gcm128_setiv(GCM128_CONTEXT *ctx, const unsigned char *iv, argument
915 memcpy(ctx->Yi.c, iv, 12);
924 ctx->Yi.c[i] ^= iv[i];
926 iv += 16;
931 ctx->Yi.c[i] ^= iv[i];
/freebsd-11-stable/secure/lib/libcrypto/arm/
H A Dbsaes-armv7.S1298 mov r1, r9 @ use the iv scratch space as out buffer
1564 ldr r0, [ip, #4] @ iv[]
2044 ldr r0, [ip, #4] @ iv[]
/freebsd-11-stable/sys/dev/ral/
H A Drt2860reg.h843 uint32_t iv; member in struct:rt2860_txwi
/freebsd-11-stable/sys/dev/usb/wlan/
H A Dif_runreg.h800 uint32_t iv; member in struct:rt2860_txwi
/freebsd-11-stable/sys/geom/eli/
H A Dg_eli.h684 void g_eli_crypto_ivgen(struct g_eli_softc *sc, off_t offset, u_char *iv,
/freebsd-11-stable/sys/dev/bwn/
H A Dif_bwnvar.h766 uint8_t iv[16]; member in struct:bwn_txhdr
/freebsd-11-stable/contrib/libucl/src/
H A Ducl_parser.c923 obj->value.iv = is_neg ? (-lv) : lv;
/freebsd-11-stable/sys/compat/svr4/
H A Dsvr4_misc.c1046 svr4_hrt_interval_t * iv; member in struct:svr4_hrtcntl_args
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/zpool/
H A Dzpool_main.c2920 get_interval_count(int *argcp, char **argv, unsigned long *iv, argument
2982 *iv = interval;

Completed in 378 milliseconds

<<1112