HomeSort by relevance Sort by last modified time
    Searched refs:KM_PURPOSE_ENCRYPT (Results 1 - 25 of 26) sorted by null

1 2

  /system/keymaster/
rsa_key.cpp 43 case KM_PURPOSE_ENCRYPT:
59 case KM_PURPOSE_ENCRYPT:
aes_key.cpp 35 case KM_PURPOSE_ENCRYPT:
aes_operation.h 47 keymaster_purpose_t purpose() const override { return KM_PURPOSE_ENCRYPT; }
112 : AesEvpOperation(KM_PURPOSE_ENCRYPT, block_mode, padding, caller_iv, tag_length, key,
ecdsa_keymaster1_operation.h 63 assert(super::purpose() != KM_PURPOSE_ENCRYPT);
operation.cpp 76 case KM_PURPOSE_ENCRYPT:
rsa_keymaster1_key.cpp 134 case KM_PURPOSE_ENCRYPT:
rsa_keymaster1_operation.h 63 assert(super::purpose() != KM_PURPOSE_ENCRYPT);
rsa_operation.h 152 : RsaCryptOperation(KM_PURPOSE_ENCRYPT, digest, padding, key) {}
241 keymaster_purpose_t purpose() const override { return KM_PURPOSE_ENCRYPT; }
android_keymaster_test.cpp 278 EXPECT_FALSE(contains(auths, TAG_PURPOSE, KM_PURPOSE_ENCRYPT));
    [all...]
keymaster_enforcement.cpp 88 case KM_PURPOSE_ENCRYPT:
101 return purpose == KM_PURPOSE_ENCRYPT || purpose == KM_PURPOSE_SIGN;
126 case KM_PURPOSE_ENCRYPT:
rsa_key_factory.cpp 45 case KM_PURPOSE_ENCRYPT:
rsa_keymaster1_operation.cpp 170 case KM_PURPOSE_ENCRYPT:
keymaster_enforcement_test.cpp 452 kmen.AuthorizeOperation(KM_PURPOSE_ENCRYPT, key_id, auth_set));
467 EXPECT_EQ(KM_ERROR_OK, kmen.AuthorizeOperation(KM_PURPOSE_ENCRYPT, key_id, auth_set));
474 .Authorization(TAG_PURPOSE, KM_PURPOSE_ENCRYPT)
478 .Authorization(TAG_PURPOSE, KM_PURPOSE_ENCRYPT)
485 kmen.AuthorizeOperation(KM_PURPOSE_ENCRYPT, key_id, caller_nonce, begin_params,
491 kmen.AuthorizeOperation(KM_PURPOSE_ENCRYPT, key_id, no_caller_nonce, begin_params,
    [all...]
asymmetric_key.cpp 64 if (tee_enforced.Contains(TAG_PURPOSE, KM_PURPOSE_ENCRYPT) ||
66 sw_enforced.Contains(TAG_PURPOSE, KM_PURPOSE_ENCRYPT) ||
android_keymaster_test_utils.cpp 471 ProcessMessage(KM_PURPOSE_ENCRYPT, message, begin_params, update_params, &output_params);
502 ProcessMessage(KM_PURPOSE_ENCRYPT, message, begin_params, update_params, &output_params);
521 ProcessMessage(KM_PURPOSE_ENCRYPT, message, begin_params, update_params, &output_params);
537 return ProcessMessage(KM_PURPOSE_ENCRYPT, message, begin_params, update_params, output_params);
    [all...]
aes_operation.cpp 131 case KM_PURPOSE_ENCRYPT:
rsa_operation.cpp 153 case KM_PURPOSE_ENCRYPT:
soft_keymaster_device.cpp 147 keymaster_purpose_t crypt_purposes[] = {KM_PURPOSE_ENCRYPT, KM_PURPOSE_DECRYPT};
    [all...]
  /cts/tests/tests/keystore/src/android/keystore/cts/
AuthorizationList.java 78 public static final int KM_PURPOSE_ENCRYPT = 0;
150 .put(KM_PURPOSE_ENCRYPT, "ENCRYPT")
KeyAttestationTest.java 29 import static android.keystore.cts.AuthorizationList.KM_PURPOSE_ENCRYPT;
    [all...]
  /frameworks/base/keystore/java/android/security/keystore/
KeyProperties.java 80 return KeymasterDefs.KM_PURPOSE_ENCRYPT;
94 case KeymasterDefs.KM_PURPOSE_ENCRYPT:
AndroidKeyStoreCipherSpiBase.java 246 ? KeymasterDefs.KM_PURPOSE_ENCRYPT : KeymasterDefs.KM_PURPOSE_DECRYPT;
    [all...]
  /frameworks/base/core/java/android/security/keymaster/
KeymasterDefs.java 139 public static final int KM_PURPOSE_ENCRYPT = 0;
  /hardware/libhardware/include/hardware/
keymaster_defs.h 294 KM_PURPOSE_ENCRYPT = 0, /* Usable with RSA, EC and AES keys. */
  /system/keymaster/include/keymaster/
authorization_set.h 602 Authorization(TAG_PURPOSE, KM_PURPOSE_ENCRYPT);

Completed in 750 milliseconds

1 2