All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.gatling.recorder.internal.bouncycastle.its.operator.ETSIDataEncryptor Maven / Gradle / Ivy

package io.gatling.recorder.internal.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 - 2024 Weber Informatics LLC | Privacy Policy