HomeSort by relevance Sort by last modified time
    Searched defs:kdf (Results 1 - 5 of 5) sorted by null

  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/engines/
IESEngine.java 23 DerivationFunction kdf; field in class:IESEngine
37 * @param kdf the key derivation function used for byte generation
42 DerivationFunction kdf,
46 this.kdf = kdf;
57 * @param kdf the key derivation function used for byte generation
63 DerivationFunction kdf,
68 this.kdf = kdf;
106 kdf.init(kParam)
    [all...]
  /external/openssl/crypto/evp/
p5_crpt2.c 157 PBKDF2PARAM *kdf = NULL; local
213 if(!(kdf = d2i_PBKDF2PARAM(NULL, &pbuf, plen)) ) {
221 /* Now check the parameters of the kdf */
223 if(kdf->keylength && (ASN1_INTEGER_get(kdf->keylength) != (int)keylen)){
229 if(kdf->prf && (OBJ_obj2nid(kdf->prf->algorithm) != NID_hmacWithSHA1)) {
234 if(kdf->salt->type != V_ASN1_OCTET_STRING) {
241 salt = kdf->salt->value.octet_string->data;
242 saltlen = kdf->salt->value.octet_string->length
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_aka.c 2 * EAP peer method: EAP-AKA (RFC 4187) and EAP-AKA' (draft-arkko-eap-aka-kdf)
62 u16 kdf; member in struct:eap_aka_data
665 u8 id, u16 kdf)
670 data->kdf = kdf;
671 wpa_printf(MSG_DEBUG, "Generating EAP-AKA Challenge (id=%d) (KDF "
676 eap_sim_msg_add(msg, EAP_SIM_AT_KDF, kdf, NULL, 0);
687 if (attr->kdf[i] == EAP_AKA_PRIME_KDF)
692 /* No matching KDF found - fail authentication as if AUTN had been
706 /* The only allowed (and required) duplication of a KDF is the additio
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_aka.c 2 * hostapd / EAP-AKA (RFC 4187) and EAP-AKA' (draft-arkko-eap-aka-kdf)
57 u16 kdf; member in struct:eap_aka_data
375 if (data->kdf) {
376 /* Add the selected KDF into the beginning */
378 eap_sim_msg_add(msg, EAP_SIM_AT_KDF, data->kdf,
812 /* KDF negotiation; to be enabled only after more than one KDF is
816 if (attr->kdf[0] != EAP_AKA_PRIME_KDF) {
818 "unknown KDF");
825 data->kdf = attr->kdf[0]
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
eap_sim_common.h 206 u16 kdf[EAP_AKA_PRIME_KDF_MAX]; member in struct:eap_sim_attrs

Completed in 491 milliseconds