<PackageReference Include="BouncyCastle.Cryptography" Version="2.6.0-beta.106" />

AsconAead128

public sealed class AsconAead128 : IAeadCipher
Ascon-AEAD128 was introduced as part of the NIST Lightweight Cryptography competition and descriLEd in the NIST Special Publication SP 800-232 (Initial Public Draft).
public string AlgorithmName { get; }

public AsconAead128()

public int DoFinal(byte[] outBytes, int outOff)

public int GetIVBytesSize()

public int GetKeyBytesSize()

public byte[] GetMac()

public int GetOutputSize(int len)

public int GetUpdateOutputSize(int len)

public void Init(bool forEncryption, ICipherParameters parameters)

public void ProcessAadByte(byte input)

public void ProcessAadBytes(byte[] inBytes, int inOff, int len)

public int ProcessByte(byte input, byte[] outBytes, int outOff)

public int ProcessBytes(byte[] inBytes, int inOff, int len, byte[] outBytes, int outOff)

public void Reset()