Searched refs:engineDoPhase (Results 1 - 5 of 5) sorted by last modified time

/libcore/crypto/src/main/java/org/conscrypt/
H A DOpenSSLECDHKeyAgreement.java46 /** Agreed key. Only available after {@link #engineDoPhase(Key, boolean)} completes. */
50 public Key engineDoPhase(Key key, boolean lastPhase) throws InvalidKeyException { method in class:OpenSSLECDHKeyAgreement
/libcore/luni/src/main/java/javax/crypto/
H A DKeyAgreement.java262 return spiImpl.engineDoPhase(key, lastPhase);
H A DKeyAgreementSpi.java56 protected abstract Key engineDoPhase(Key key, boolean lastPhase) method in class:KeyAgreementSpi
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
H A DKeyAgreementSpiTest.java48 protected Key engineDoPhase(Key key, boolean lastPhase) throws InvalidKeyException, method in class:KeyAgreementSpiTest.Mock_KeyAgreementSpi
50 return super.engineDoPhase(key, lastPhase);
92 assertNull("Not null result", kaSpi.engineDoPhase(null, true));
94 kaSpi.engineDoPhase(null, false);
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/support/
H A DMyKeyAgreementSpi.java45 protected Key engineDoPhase(Key key, boolean lastPhase) method in class:MyKeyAgreementSpi

Completed in 207 milliseconds