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

  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLECKeyFactory.java 85 ECPublicKey ecKey = (ECPublicKey) key;
86 return (T) new ECPublicKeySpec(ecKey.getW(), ecKey.getParams());
92 ECPublicKey ecKey = (ECPublicKey) engineGeneratePublic(new X509EncodedKeySpec(encoded));
93 return (T) new ECPublicKeySpec(ecKey.getW(), ecKey.getParams());
96 ECPrivateKey ecKey = (ECPrivateKey) key;
97 return (T) new ECPrivateKeySpec(ecKey.getS(), ecKey.getParams());
103 ECPrivateKey ecKey
    [all...]
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreKeyFactorySpi.java 111 AndroidKeyStoreECPublicKey ecKey = (AndroidKeyStoreECPublicKey) key;
113 T result = (T) new ECPublicKeySpec(ecKey.getW(), ecKey.getParams());
  /libcore/ojluni/src/main/java/sun/security/ec/
ECKeyFactory.java 101 public static ECKey toECKey(Key key) throws InvalidKeyException {
102 if (key instanceof ECKey) {
103 ECKey ecKey = (ECKey)key;
104 checkKey(ecKey);
105 return ecKey;
107 return (ECKey)INSTANCE.translateKey(key);
114 private static void checkKey(ECKey key) throws InvalidKeyException {
127 // ECKey does not extend Key, so we need to do a cas
    [all...]
  /build/tools/signtos/
SignTos.java 45 import java.security.interfaces.ECKey;
205 ECKey ecKey = (ECKey) key;
206 int curveSize = ecKey.getParams().getOrder().bitLength();
  /prebuilts/sdk/tools/lib/
signapk.jar 

Completed in 1035 milliseconds