Searched defs:getY (Results 1 - 9 of 9) sorted by relevance

/libcore/luni/src/main/java/java/security/interfaces/
H A DDSAPublicKey.java38 public BigInteger getY(); method in interface:DSAPublicKey
/libcore/luni/src/main/java/javax/crypto/interfaces/
H A DDHPublicKey.java37 public BigInteger getY(); method in interface:DHPublicKey
/libcore/luni/src/main/java/javax/crypto/spec/
H A DDHPublicKeySpec.java55 public BigInteger getY() { method in class:DHPublicKeySpec
/libcore/luni/src/main/java/java/security/spec/
H A DDSAPublicKeySpec.java88 public BigInteger getY() { method in class:DSAPublicKeySpec
/libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
H A DDSAPublicKeyImpl.java83 y = keySpec.getY();
154 public BigInteger getY() { method in class:DSAPublicKeyImpl
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/interfaces/
H A DDHPublicKeyTest.java63 assertTrue(pk1.getY().getClass().getCanonicalName().equals("java.math.BigInteger"));
66 assertTrue(pk1.getY().equals(pk1.getY()));
82 public BigInteger getY() { method in class:DHPublicKeyTest.checkDHPublicKey
H A DPBEKeyTest.java80 public BigInteger getY() { method in class:PBEKeyTest.checkPBEKey
/libcore/crypto/src/main/java/org/conscrypt/
H A DOpenSSLDSAParams.java95 BigInteger getY() { method in class:OpenSSLDSAParams
H A DOpenSSLDSAPublicKey.java52 dsaKeySpec.getY().toByteArray(),
72 dsaPublicKey.getY().toByteArray(),
110 public BigInteger getY() { method in class:OpenSSLDSAPublicKey
112 return params.getY();
140 return params.getY().equals(other.getY()) && params.equals(other.getParams());
147 return params.getY().hashCode() ^ params.hashCode();
156 sb.append(params.getY().toString(16));
191 stream.writeObject(params.getY());

Completed in 4755 milliseconds