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

  /external/nos/host/android/hals/keymaster/
import_wrapped_key.cpp 348 * secureKey OCTET_STRING,
468 CBS secureKey;
470 if (!CBS_get_asn1(&child, &secureKey, CBS_ASN1_OCTETSTRING)) {
476 if (CBS_len(&secureKey) > KM_WRAPPER_WRAPPED_MAX_KEY_SIZE) {
480 << CBS_len(&secureKey);
501 request->set_encrypted_import_key(CBS_data(&secureKey),
502 CBS_len(&secureKey));
  /development/samples/BrokenKeyDerivation/src/com/example/android/brokenkeyderivation/
BrokenKeyDerivationActivity.java 104 SecretKey secureKey = deriveKeySecurely(password, KEY_SIZE);
105 storeDataEncryptedWithSecureKey(encryptData(decryptedData, retrieveIv(), secureKey));
109 SecretKey secureKey = deriveKeySecurely(password, KEY_SIZE);
110 byte[] decryptedData = decryptData(retrieveEncryptedData(), retrieveIv(), secureKey);

Completed in 274 milliseconds