Searched refs:lastPhase (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/crypto/
H A DKeyAgreementSpi.java49 * <code>lastPhase</code> flag set to <code>true</code>.
52 * the first time setting the <code>lastPhase</code> flag to
116 * @param lastPhase flag which indicates whether or not this is the last
127 protected abstract Key engineDoPhase(Key key, boolean lastPhase) argument
H A DKeyAgreement.java50 * <code>lastPhase</code> flag set to <code>true</code>.
53 * the first time setting the <code>lastPhase</code> flag to
536 * @param lastPhase flag which indicates whether or not this is the last
547 public final Key doPhase(Key key, boolean lastPhase) argument
551 return spi.engineDoPhase(key, lastPhase);
/openjdk7/jdk/src/share/classes/sun/security/ec/
H A DECDHKeyAgreement.java83 protected Key engineDoPhase(Key key, boolean lastPhase) argument
91 if (!lastPhase) {
93 ("Only two party agreement supported, lastPhase must be true");
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11ECDHKeyAgreement.java94 protected Key engineDoPhase(Key key, boolean lastPhase) argument
102 if (lastPhase == false) {
104 ("Only two party agreement supported, lastPhase must be true");
H A DP11KeyAgreement.java103 protected Key engineDoPhase(Key key, boolean lastPhase) argument
117 if ((multiPartyAgreement != null) || (lastPhase == false)) {
128 return multiPartyAgreement.doPhase(key, lastPhase);
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DDHKeyAgreement.java169 * @param lastPhase flag which indicates whether or not this is the last
180 protected Key engineDoPhase(Key key, boolean lastPhase) argument
216 if (lastPhase == false) {

Completed in 26 milliseconds