Package org.bouncycastle.mls.crypto
Interface MlsAead
- All Known Implementing Classes:
BcMlsAead
public interface MlsAead
-
Method Details
-
getKeySize
int getKeySize() -
getNonceSize
int getNonceSize() -
open
byte[] open(byte[] key, byte[] nonce, byte[] aad, byte[] pt) throws org.bouncycastle.crypto.InvalidCipherTextException - Throws:
org.bouncycastle.crypto.InvalidCipherTextException
-
seal
byte[] seal(byte[] key, byte[] nonce, byte[] aad, byte[] pt) throws org.bouncycastle.crypto.InvalidCipherTextException - Throws:
org.bouncycastle.crypto.InvalidCipherTextException
-