org.bouncycastle.its.operator.ETSIDataEncryptor Maven / Gradle / Ivy
package org.bouncycastle.its.operator;
public interface ETSIDataEncryptor
{
byte[] encrypt(byte[] content);
/**
* return the last key generated
*
* @return last key value generated.
*/
byte[] getKey();
/**
* return the last nonce generated
*
* @return last nonce value generated.
*/
byte[] getNonce();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy