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