HomeSort by relevance Sort by last modified time
    Searched refs:ecCurve (Results 1 - 13 of 13) sorted by null

  /cts/tests/security/src/android/keystore/cts/
AuthorizationList.java 169 private Integer ecCurve;
268 ecCurve = Asn1Utils.getIntegerFromAsn1(value);
447 return ecCurve;
451 if (ecCurve == null)
454 switch (ecCurve) {
600 if (ecCurve != null) {
  /hardware/interfaces/keymaster/4.0/support/
key_param_output.cpp 62 return os << (int)param.f.ecCurve;
  /hardware/interfaces/keymaster/4.0/support/include/keymasterV4_0/
keymaster_tags.h 214 MAKE_TAG_ENUM_VALUE_ACCESSOR(TAG_EC_CURVE, f.ecCurve)
415 return a.f.ecCurve == b.f.ecCurve;
  /hardware/interfaces/keymaster/3.0/vts/functional/
key_param_output.cpp 66 ::std::ostream& operator<<(::std::ostream& os, EcCurve value) {
90 return os << (int)param.f.ecCurve;
keymaster_tags.h 221 MAKE_TAG_ENUM_VALUE_ACCESSOR(TAG_EC_CURVE, f.ecCurve)
431 inline const char* stringify(EcCurve curve) {
433 case EcCurve::P_224:
435 case EcCurve::P_256:
437 case EcCurve::P_384:
439 case EcCurve::P_521:
keymaster_hidl_hal_test.cpp 144 return a.f.ecCurve == b.f.ecCurve;
    [all...]
  /cts/tests/tests/keystore/src/android/keystore/cts/
KeyAttestationTest.java 457 private void testEcAttestation(byte[] challenge, boolean includeValidityDates, String ecCurve,
466 .setAlgorithmParameterSpec(new ECGenParameterSpec(ecCurve))
488 checkEcKeyDetails(attestation, ecCurve, keySize);
    [all...]
  /hardware/interfaces/keymaster/3.0/
types.hal 51 EC_CURVE = TagType:ENUM | 10, /** EcCurve. */
218 enum EcCurve : uint32_t {
383 EcCurve ecCurve;
  /hardware/interfaces/keymaster/4.0/
types.hal     [all...]
  /external/nos/host/android/hals/keymaster/
import_key.cpp 34 using ::android::hardware::keymaster::V4_0::EcCurve;
141 const EcCurve *curve_id = nullptr;
144 curve_id = &v[0].f.ecCurve;
166 EcCurve parsed_curve_id;
171 parsed_curve_id = EcCurve::P_224;
175 parsed_curve_id = EcCurve::P_256;
179 parsed_curve_id = EcCurve::P_384;
183 parsed_curve_id = EcCurve::P_521;
import_wrapped_key.cpp 38 using ::android::hardware::keymaster::V4_0::EcCurve;
191 kp.f.ecCurve = (EcCurve)val;
312 * ecCurve [10] EXPLICIT INTEGER OPTIONAL,
proto_utils.cpp 31 using ::android::hardware::keymaster::V4_0::EcCurve;
299 static nosapp::EcCurve translate_ec_curve(EcCurve ec_curve)
302 case EcCurve::P_224:
303 return nosapp::EcCurve::P_224;
304 case EcCurve::P_256:
305 return nosapp::EcCurve::P_256;
306 case EcCurve::P_384:
307 return nosapp::EcCurve::P_384;
308 case EcCurve::P_521
    [all...]
  /system/keymaster/ng/include/
keymaster_tags.h 72 using ::android::hardware::keymaster::V3_0::EcCurve;
239 MAKE_TAG_ENUM_VALUE_ACCESSOR(TAG_EC_CURVE, f.ecCurve)

Completed in 1216 milliseconds