services = ENGINE.getServices(algorithm);
if (services == null) {
return null;
}
for (Provider.Service service : services) {
Engine.SpiAndProvider sap = tryAlgorithmWithProvider(key, service);
if (sap != null) {
return sap;
}
}
return null;
}
private static Engine.SpiAndProvider tryAlgorithmWithProvider(Key key, Provider.Service service) {
try {
if (key != null && !service.supportsParameter(key)) {
return null;
}
Engine.SpiAndProvider sap = ENGINE.getInstance(service, null);
if (sap.spi == null || sap.provider == null) {
return null;
}
if (!(sap.spi instanceof MacSpi)) {
return null;
}
return sap;
} catch (NoSuchAlgorithmException ignored) {
}
return null;
}
/**
* Makes sure a MacSpi that matches this type is selected.
*/
private MacSpi getSpi(Key key) {
synchronized (initLock) {
if (spiImpl != null && provider != null && key == null) {
return spiImpl;
}
if (algorithm == null) {
return null;
}
final Engine.SpiAndProvider sap = tryAlgorithm(key, specifiedProvider, algorithm);
if (sap == null) {
throw new ProviderException("No provider for " + getAlgorithm());
}
/*
* Set our Spi if we've never been initialized or if we have the Spi
* specified and have a null provider.
*/
if (spiImpl == null || provider != null) {
spiImpl = (MacSpi) sap.spi;
}
provider = sap.provider;
return spiImpl;
}
}
/**
* Convenience call when the Key is not available.
*/
private MacSpi getSpi() {
return getSpi(null);
}
/**
* Returns the length of this MAC (in bytes).
*
* @return the length of this MAC (in bytes).
*/
public final int getMacLength() {
return getSpi().engineGetMacLength();
}
/**
* Initializes this {@code Mac} instance with the specified key and
* algorithm parameters.
*
* @param key
* the key to initialize this algorithm.
* @param params
* the parameters for this algorithm.
* @throws InvalidKeyException
* if the specified key cannot be used to initialize this
* algorithm, or it is null.
* @throws InvalidAlgorithmParameterException
* if the specified parameters cannot be used to initialize this
* algorithm.
*/
public final void init(Key key, AlgorithmParameterSpec params)
throws InvalidKeyException, InvalidAlgorithmParameterException {
if (key == null) {
throw new InvalidKeyException("key == null");
}
getSpi(key).engineInit(key, params);
isInitMac = true;
}
/**
* Initializes this {@code Mac} instance with the specified key.
*
* @param key
* the key to initialize this algorithm.
* @throws InvalidKeyException
* if initialization fails because the provided key is {@code
* null}.
* @throws RuntimeException
* if the specified key cannot be used to initialize this
* algorithm.
*/
public final void init(Key key) throws InvalidKeyException {
if (key == null) {
throw new InvalidKeyException("key == null");
}
try {
getSpi(key).engineInit(key, null);
isInitMac = true;
} catch (InvalidAlgorithmParameterException e) {
throw new RuntimeException(e);
}
}
/**
* Updates this {@code Mac} instance with the specified byte.
*
* @param input
* the byte
* @throws IllegalStateException
* if this MAC is not initialized.
*/
public final void update(byte input) throws IllegalStateException {
if (!isInitMac) {
throw new IllegalStateException();
}
getSpi().engineUpdate(input);
}
/**
* Updates this {@code Mac} instance with the data from the specified buffer
* {@code input} from the specified {@code offset} and length {@code len}.
*
* @param input
* the buffer.
* @param offset
* the offset in the buffer.
* @param len
* the length of the data in the buffer.
* @throws IllegalStateException
* if this MAC is not initialized.
* @throws IllegalArgumentException
* if {@code offset} and {@code len} do not specified a valid
* chunk in {@code input} buffer.
*/
public final void update(byte[] input, int offset, int len) throws IllegalStateException {
if (!isInitMac) {
throw new IllegalStateException();
}
if (input == null) {
return;
}
if ((offset < 0) || (len < 0) || ((offset + len) > input.length)) {
throw new IllegalArgumentException("Incorrect arguments."
+ " input.length=" + input.length
+ " offset=" + offset + ", len=" + len);
}
getSpi().engineUpdate(input, offset, len);
}
/**
* Copies the buffer provided as input for further processing.
*
* @param input
* the buffer.
* @throws IllegalStateException
* if this MAC is not initialized.
*/
public final void update(byte[] input) throws IllegalStateException {
if (!isInitMac) {
throw new IllegalStateException();
}
if (input != null) {
getSpi().engineUpdate(input, 0, input.length);
}
}
/**
* Updates this {@code Mac} instance with the data from the specified
* buffer, starting at {@link ByteBuffer#position()}, including the next
* {@link ByteBuffer#remaining()} bytes.
*
* @param input
* the buffer.
* @throws IllegalStateException
* if this MAC is not initialized.
*/
public final void update(ByteBuffer input) {
if (!isInitMac) {
throw new IllegalStateException();
}
if (input != null) {
getSpi().engineUpdate(input);
} else {
throw new IllegalArgumentException("input == null");
}
}
/**
* Computes the digest of this MAC based on the data previously specified in
* {@link #update} calls.
*
* This {@code Mac} instance is reverted to its initial state and can be
* used to start the next MAC computation with the same parameters or
* initialized with different parameters.
*
* @return the generated digest.
* @throws IllegalStateException
* if this MAC is not initialized.
*/
public final byte[] doFinal() throws IllegalStateException {
if (!isInitMac) {
throw new IllegalStateException();
}
return getSpi().engineDoFinal();
}
/**
* Computes the digest of this MAC based on the data previously specified in
* {@link #update} calls and stores the digest in the specified {@code
* output} buffer at offset {@code outOffset}.
*
* This {@code Mac} instance is reverted to its initial state and can be
* used to start the next MAC computation with the same parameters or
* initialized with different parameters.
*
* @param output
* the output buffer
* @param outOffset
* the offset in the output buffer
* @throws ShortBufferException
* if the specified output buffer is either too small for the
* digest to be stored, the specified output buffer is {@code
* null}, or the specified offset is negative or past the length
* of the output buffer.
* @throws IllegalStateException
* if this MAC is not initialized.
*/
public final void doFinal(byte[] output, int outOffset)
throws ShortBufferException, IllegalStateException {
if (!isInitMac) {
throw new IllegalStateException();
}
if (output == null) {
throw new ShortBufferException("output == null");
}
if ((outOffset < 0) || (outOffset >= output.length)) {
throw new ShortBufferException("Incorrect outOffset: " + outOffset);
}
MacSpi spi = getSpi();
int t = spi.engineGetMacLength();
if (t > (output.length - outOffset)) {
throw new ShortBufferException("Output buffer is short. Needed " + t + " bytes.");
}
byte[] result = spi.engineDoFinal();
System.arraycopy(result, 0, output, outOffset, result.length);
}
/**
* Computes the digest of this MAC based on the data previously specified on
* {@link #update} calls and on the final bytes specified by {@code input}
* (or based on those bytes only).
*
* This {@code Mac} instance is reverted to its initial state and can be
* used to start the next MAC computation with the same parameters or
* initialized with different parameters.
*
* @param input
* the final bytes.
* @return the generated digest.
* @throws IllegalStateException
* if this MAC is not initialized.
*/
public final byte[] doFinal(byte[] input) throws IllegalStateException {
if (!isInitMac) {
throw new IllegalStateException();
}
MacSpi spi = getSpi();
if (input != null) {
spi.engineUpdate(input, 0, input.length);
}
return spi.engineDoFinal();
}
/**
* Resets this {@code Mac} instance to its initial state.
*
* This {@code Mac} instance is reverted to its initial state and can be
* used to start the next MAC computation with the same parameters or
* initialized with different parameters.
*/
public final void reset() {
getSpi().engineReset();
}
/**
* Clones this {@code Mac} instance and the underlying implementation.
*
* @return the cloned instance.
* @throws CloneNotSupportedException
* if the underlying implementation does not support cloning.
*/
@Override
public final Object clone() throws CloneNotSupportedException {
MacSpi newSpiImpl = null;
final MacSpi spi = getSpi();
if (spi != null) {
newSpiImpl = (MacSpi) spi.clone();
}
Mac mac = new Mac(newSpiImpl, this.provider, this.algorithm);
mac.isInitMac = this.isInitMac;
return mac;
}
}