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

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

package io.gatling.recorder.internal.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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy