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

  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLECKeyPairGenerator.java 63 final String curveName = SIZE_TO_CURVE_NAME.get(DEFAULT_KEY_SIZE);
64 group = OpenSSLECGroupContext.getCurveByName(curveName);
66 throw new RuntimeException("Curve not recognized: " + curveName);
104 final String curveName = ecParam.getName();
111 .getCurveByName(curveName);
113 throw new InvalidAlgorithmParameterException("unknown curve name: " + curveName);
126 for (String curveName : SIZE_TO_CURVE_NAME.values()) {
127 if (OpenSSLECGroupContext.getCurveByName(curveName) == null) {
128 invalidCurves.add(curveName);
OpenSSLECGroupContext.java 38 static OpenSSLECGroupContext getCurveByName(String curveName) {
41 if ("secp256r1".equals(curveName)) {
42 curveName = "prime256v1";
45 final long ctx = NativeCrypto.EC_GROUP_new_by_curve_name(curveName);
71 String curveName = Platform.getCurveName(params);
72 if (curveName != null) {
73 return OpenSSLECGroupContext.getCurveByName(curveName);
101 curveName = "secp224r1";
109 curveName = "prime256v1";
117 curveName = "secp384r1"
    [all...]
  /libcore/ojluni/src/main/java/java/security/spec/
ECParameterSpec.java 117 private String curveName;
124 public void setCurveName(String curveName) {
125 this.curveName = curveName;
135 return curveName;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
AlgorithmParametersSpi.java 24 private String curveName;
44 curveName = ecGenParameterSpec.getName();
51 curveName = ((ECNamedCurveSpec)algorithmParameterSpec).getName();
55 curveName = null;
86 curveName = ECNamedCurveTable.getName(curveId);
87 if (curveName == null)
89 curveName = curveId.getId();
111 if (curveName != null)
113 ASN1ObjectIdentifier namedCurveOid = ECUtil.getNamedCurveOid(curveName);
119 return (T)new ECGenParameterSpec(curveName);
    [all...]
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreKeyPairGeneratorSpi.java 419 String curveName = ecSpec.getName();
421 curveName.toLowerCase(Locale.US));
424 "Unsupported EC curve name: " + curveName
    [all...]
  /prebuilts/tools/common/m2/repository/org/bitbucket/b_c/jose4j/0.5.0/
jose4j-0.5.0.jar 
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-8.0.0_r4-robolectric-r1.jar 
android-all-8.1.0-robolectric-r4458339.jar 
android-all-7.0.0_r1-robolectric-r1.jar 
android-all-7.1.0_r7-robolectric-r1.jar 
android-all-4.3_r2-robolectric-r1.jar 
android-all-4.4_r1-robolectric-r2.jar 
android-all-5.0.2_r3-robolectric-r0.jar 
android-all-5.1.1_r9-robolectric-r2.jar 
android-all-6.0.1_r3-robolectric-0.jar 
android-all-6.0.1_r3-robolectric-r1.jar 
android-all-7.1.0_r7-robolectric-0.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.56/
bcprov-jdk15on-1.56.jar 

Completed in 252 milliseconds