org.bouncycastle.its.operator.ETSIDataDecryptor Maven / Gradle / Ivy
package org.bouncycastle.its.operator;
public interface ETSIDataDecryptor
{
byte[] decrypt(byte[] wrappedKey, byte[] content, byte[] nonce);
/**
* return the unwrapped key found in the data. Call after decrypt.
*
* @return the unwrapped key.
*/
byte[] getKey();
}