May 1998
Intermediate to advanced
469 pages
14h 57m
English
Class javax.crypto.KeyAgreementSpi
This is the Security Provider Interface class for the
KeyAgreement class. If you want to implement a
key agreement algorithm, create a subclass of this class and register
it with an appropriate security provider.
public abstract class javax.crypto.KeyAgreementSpi
extends java.lang.Object {
// Constructors
public KeyAgreementSpi();
// Protected Instance Methods
protected abstract Key engineDoPhase(Key, boolean);
protected abstract byte[] engineGenerateSecret();
protected abstract int engineGenerateSecret(byte[], int);
protected abstract void engineInit(Key, SecureRandom);
protected abstract void engineInit(Key, AlgorithmParameterSpec,
SecureRandom);
}
AlgorithmParameterSpec, Key, KeyAgreement, SecureRandom