| /freebsd/crypto/krb5/src/plugins/preauth/spake/ |
| H A D | t_vectors.c | 43 const char *ikey; member 385 krb5_keyblock *ikey, *K0, *K1, *K2, *K3, *kb; in run_test() local 390 ikey = decode_keyblock(t->enctype, t->ikey); in run_test() 406 check(derive_wbytes(ctx, t->group, ikey, &wbytes)); in run_test() 430 check(derive_key(ctx, gstate, t->group, ikey, &wbytes, K, thash, body, 0, in run_test() 434 check(derive_key(ctx, gstate, t->group, ikey, &wbytes, K, thash, body, 1, in run_test() 438 check(derive_key(ctx, gstate, t->group, ikey, &wbytes, K, thash, body, 2, in run_test() 442 check(derive_key(ctx, gstate, t->group, ikey, &wbytes, K, thash, body, 3, in run_test() 449 krb5_free_keyblock(ctx, ikey); in run_test()
|
| H A D | util.c | 104 derive_wbytes(krb5_context context, int32_t group, const krb5_keyblock *ikey, in derive_wbytes() argument 130 ret = krb5_c_prfplus(context, ikey, &prf_input, &wbytes); in derive_wbytes() 150 const krb5_keyblock *ikey, const krb5_data *wbytes, in derive_key() argument 165 store_32_be(ikey->enctype, etypenbuf); in derive_key() 181 ret = krb5_c_keylengths(context, ikey->enctype, &seedlen, &keylen); in derive_key() 198 ret = krb5_init_keyblock(context, ikey->enctype, keylen, &hkey); in derive_key() 202 ret = krb5_c_random_to_key(context, ikey->enctype, &d, hkey); in derive_key() 206 ret = krb5_c_fx_cf2_simple(context, ikey, "SPAKE", hkey, "keyderiv", out); in derive_key()
|
| H A D | spake_kdc.c | 220 const krb5_keyblock *ikey; in send_challenge() local 228 ikey = cb->client_keyblock(context, rock); in send_challenge() 229 if (ikey == NULL) { in send_challenge() 234 ret = derive_wbytes(context, group, ikey, &wbytes); in send_challenge() 304 const krb5_keyblock *ikey; in spake_edata() local 310 ikey = cb->client_keyblock(context, rock); in spake_edata() 311 if (ikey == NULL) { in spake_edata() 371 const krb5_keyblock *ikey; in verify_response() local 380 ikey = cb->client_keyblock(context, rock); in verify_response() 381 if (ikey == NULL) { in verify_response() [all …]
|
| H A D | util.h | 46 const krb5_keyblock *ikey, 50 int32_t group, const krb5_keyblock *ikey,
|
| /freebsd/crypto/openssl/crypto/rc4/asm/ |
| H A D | rc4-s390x.pl | 179 $ikey="%r7"; 197 lghi $ikey,-256 203 llgc $acc,2+256($ikey,$key) 206 la $ikey,1($ikey) 210 tml $ikey,255 212 stc $dat,2+256-1($ikey,$key)
|
| /freebsd/crypto/openssl/crypto/ocsp/ |
| H A D | ocsp_lib.c | 27 ASN1_BIT_STRING *ikey; in OCSP_cert_to_id() local 38 ikey = X509_get0_pubkey_bitstr(issuer); in OCSP_cert_to_id() 39 return OCSP_cert_id_new(dgst, iname, ikey, serial); in OCSP_cert_to_id()
|
| /freebsd/contrib/wpa/src/crypto/ |
| H A D | tls_openssl_ocsp.c | 392 ASN1_BIT_STRING *ikey; in issuer_match() local 429 ikey = X509_get0_pubkey_bitstr(issuer); in issuer_match() 430 if (!ikey || in issuer_match() 431 !EVP_Digest(ikey->data, ikey->length, md, &len, dgst, NULL) || in issuer_match()
|
| /freebsd/contrib/wpa/src/ap/ |
| H A D | ieee802_1x.c | 332 u8 *ikey; in ieee802_1x_tx_key() local 334 ikey = os_malloc(hapd->conf->individual_wep_key_len); in ieee802_1x_tx_key() 335 if (!ikey || in ieee802_1x_tx_key() 336 random_get_bytes(ikey, hapd->conf->individual_wep_key_len)) in ieee802_1x_tx_key() 340 os_free(ikey); in ieee802_1x_tx_key() 345 ikey, hapd->conf->individual_wep_key_len); in ieee802_1x_tx_key() 347 ieee802_1x_tx_key_one(hapd, sta, 0, 0, ikey, in ieee802_1x_tx_key() 353 sta->addr, 0, 0, 1, NULL, 0, ikey, in ieee802_1x_tx_key() 360 os_free(ikey); in ieee802_1x_tx_key()
|
| /freebsd/crypto/openssl/apps/ |
| H A D | ocsp.c | 981 ASN1_BIT_STRING *ikey; in add_ocsp_serial() local 993 ikey = X509_get0_pubkey_bitstr(issuer); in add_ocsp_serial() 999 id = OCSP_cert_id_new(cert_id_md, iname, ikey, sno); in add_ocsp_serial()
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderInternals.h | 394 static hash_value_type ComputeHash(internal_key_ref ikey);
|
| H A D | ASTReader.cpp | 2208 unsigned HeaderFileInfoTrait::ComputeHash(internal_key_ref ikey) { in ComputeHash() argument 2209 uint8_t buf[sizeof(ikey.Size) + sizeof(ikey.ModTime)]; in ComputeHash() 2210 memcpy(buf, &ikey.Size, sizeof(ikey.Size)); in ComputeHash() 2211 memcpy(buf + sizeof(ikey.Size), &ikey.ModTime, sizeof(ikey.ModTime)); in ComputeHash() 2217 internal_key_type ikey = {ekey.getSize(), in GetInternalKey() local 2220 return ikey; in GetInternalKey() 2245 internal_key_type ikey; in ReadKey() local 2246 ikey.Size = off_t(endian::readNext<uint64_t, llvm::endianness::little>(d)); in ReadKey() 2247 ikey.ModTime = in ReadKey() 2249 ikey.Filename = (const char *)d; in ReadKey() [all …]
|
| /freebsd/crypto/openssl/crypto/x509/ |
| H A D | x509_vfy.c | 1682 EVP_PKEY *ikey = NULL; in check_crl() local 1729 ikey = X509_get0_pubkey(issuer); in check_crl() 1730 if (ikey == NULL && !verify_cb_crl(ctx, X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY)) in check_crl() 1733 if (ikey != NULL) { in check_crl() 1734 int rv = X509_CRL_check_suiteb(crl, ikey, ctx->param->flags); in check_crl() 1739 … if (X509_CRL_verify(crl, ikey) <= 0 && !verify_cb_crl(ctx, X509_V_ERR_CRL_SIGNATURE_FAILURE)) in check_crl()
|
| /freebsd/sys/dev/sound/pci/hda/ |
| H A D | hdaa.c | 944 int ikey, i; in hdaa_gpio_patch() local 952 ikey = strtol(key, NULL, 10); in hdaa_gpio_patch() 953 if (ikey < 0 || ikey > 7) in hdaa_gpio_patch() 957 gpio &= ~HDAA_GPIO_MASK(ikey); in hdaa_gpio_patch() 958 gpio |= i << HDAA_GPIO_SHIFT(ikey); in hdaa_gpio_patch()
|
| /freebsd/share/dict/ |
| H A D | web2 | 91170 ikey
|