17 lines
371 B
C#
17 lines
371 B
C#
using System.Runtime.CompilerServices;
|
|
|
|
namespace CSSUDII.Sodium.Interop
|
|
{
|
|
public partial struct crypto_onetimeauth_poly1305_state
|
|
{
|
|
[NativeTypeName("unsigned char[256]")]
|
|
public _opaque_e__FixedBuffer opaque;
|
|
|
|
[InlineArray(256)]
|
|
public partial struct _opaque_e__FixedBuffer
|
|
{
|
|
public byte e0;
|
|
}
|
|
}
|
|
}
|