Home
last modified time | relevance | path

Searched refs:curve (Results 1 – 13 of 13) sorted by relevance

/hardware/interfaces/keymaster/3.0/vts/functional/
Dauthorization_set.h275 AuthorizationSetBuilder& EcdsaKey(EcCurve curve);
282 AuthorizationSetBuilder& EcdsaSigningKey(EcCurve curve);
333 inline AuthorizationSetBuilder& AuthorizationSetBuilder::EcdsaKey(EcCurve curve) { in EcdsaKey() argument
335 Authorization(TAG_EC_CURVE, curve); in EcdsaKey()
367 inline AuthorizationSetBuilder& AuthorizationSetBuilder::EcdsaSigningKey(EcCurve curve) { in EcdsaSigningKey() argument
368 EcdsaKey(curve); in EcdsaSigningKey()
Dkeymaster_hidl_hal_test.cpp1257 for (auto curve : curves) { in TEST_F() local
1260 GenerateKey(AuthorizationSetBuilder().EcdsaSigningKey(curve).Digest(Digest::SHA_2_512))) in TEST_F()
1261 << "Failed to generate key on curve: " << curve; in TEST_F()
1777 for (auto curve : {EcCurve::P_224, EcCurve::P_256, EcCurve::P_384, EcCurve::P_521}) { in TEST_F()
1780 .EcdsaSigningKey(curve) in TEST_F()
1782 EXPECT_EQ(ErrorCode::OK, error) << "Failed to generate ECDSA key with curve " << curve; in TEST_F()
2170 for (auto curve : {EcCurve::P_224, EcCurve::P_256, EcCurve::P_384, EcCurve::P_521}) { in TEST_F()
2173 .EcdsaSigningKey(curve) in TEST_F()
2175 EXPECT_EQ(ErrorCode::OK, error) << "Failed to generate key for EC curve " << curve; in TEST_F()
2188 << curve << ' ' << digest; in TEST_F()
[all …]
Dkeymaster_tags.h434 inline const char* stringify(EcCurve curve) {
435 switch (curve) {
/hardware/interfaces/keymaster/4.0/support/include/keymasterV4_0/
Dauthorization_set.h269 AuthorizationSetBuilder& EcdsaKey(EcCurve curve);
277 AuthorizationSetBuilder& EcdsaSigningKey(EcCurve curve);
/hardware/interfaces/keymaster/4.0/support/
Dauthorization_set.cpp469 AuthorizationSetBuilder& AuthorizationSetBuilder::EcdsaKey(EcCurve curve) { in EcdsaKey() argument
471 Authorization(TAG_EC_CURVE, curve); in EcdsaKey()
508 AuthorizationSetBuilder& AuthorizationSetBuilder::EcdsaSigningKey(EcCurve curve) { in EcdsaSigningKey() argument
509 EcdsaKey(curve); in EcdsaSigningKey()
/hardware/interfaces/keymaster/4.0/vts/functional/
Dkeymaster_hidl_hal_test.cpp728 for (auto curve : ValidCurves()) { in TEST_F() local
731 GenerateKey(AuthorizationSetBuilder().EcdsaSigningKey(curve).Digest(digest))) in TEST_F()
732 << "Failed to generate key on curve: " << curve; in TEST_F()
1300 for (auto curve : ValidCurves()) { in TEST_F() local
1303 .EcdsaSigningKey(curve) in TEST_F()
1305 EXPECT_EQ(ErrorCode::OK, error) << "Failed to generate ECDSA key with curve " << curve; in TEST_F()
1749 for (auto curve : ValidCurves()) { in TEST_F() local
1752 .EcdsaSigningKey(curve) in TEST_F()
1754 EXPECT_EQ(ErrorCode::OK, error) << "Failed to generate key for EC curve " << curve; in TEST_F()
1767 << curve << ' ' << digest; in TEST_F()
[all …]
/hardware/interfaces/graphics/common/1.0/
Dtypes.hal541 * which describes both gamma curve and numeric range (within the bit depth).
802 * Transfer characteristic curve:
810 * Transfer characteristic curve:
822 * Transfer characteristic curve:
833 * Transfer characteristic curve:
843 * Transfer characteristic curve:
853 * Transfer characteristic curve:
863 * Transfer characteristic curve:
879 * Transfer characteristic curve:
/hardware/qcom/sdm845/display/sdm/libs/core/drm/
Dhw_color_manager_drm.cpp541 mdp_sixzone->curve[i].p0 = sde_pa->six_zone_curve_p0[i] & kSixZoneP0Mask; in GetDrmPASixZone()
542 mdp_sixzone->curve[i].p1 = sde_pa->six_zone_curve_p1[i] & kSixZoneP1Mask; in GetDrmPASixZone()
/hardware/interfaces/camera/metadata/3.2/
Dtypes.hal1309 * <p>A list of x,y samples defining a tone-mapping curve for gamma adjustment.</p>
1675 * <p>Tonemapping / contrast / gamma curve for the blue
1685 * <p>Tonemapping / contrast / gamma curve for the green
1695 * <p>Tonemapping / contrast / gamma curve for the red
1712 * tonemap curve that can be used for ANDROID_TONEMAP_CURVE.</p>
1729 * <p>Tonemapping curve to use when ANDROID_TONEMAP_MODE is
1738 * <p>Tonemapping curve to use when ANDROID_TONEMAP_MODE is
/hardware/qcom/camera/msm8998/QCamera2/stack/common/
Dcam_types.h2714 cam_tonemap_curve_t curve; member
/hardware/interfaces/keymaster/4.0/
Dtypes.hal181 * Tag::EC_CURVE specifies the elliptic curve. EC key generation requests may have
182 * Tag:EC_CURVE, Tag::KEY_SIZE, or both. If both are provided and the size and curve do not
DIKeymasterDevice.hal83 * P-521. STRONGBOX IKeymasterDevices must support NIST curve P-256.
/hardware/qcom/camera/msm8998/QCamera2/HAL3/
DQCamera3HWI.cpp7898 (float*)toneCurve->curve.tonemap_points, in translateFromHalMetadata()