shithub: riscv

ref: e2270b09f3da5b63cfaab6ec1650678bb6918a0d
dir: /sys/src/cmd/cryptsetup/crypt.h/

View raw version
// Author Taru Karttunen <[email protected]>
// This file can be used as both Public Domain or Creative Commons CC0.
#include <libsec.h>

typedef struct {
	unsigned char Salt[16];
	unsigned char Key[32];
} Slot;

typedef struct {
	unsigned char Master[32];
	Slot Slots[8];
	AESstate C1, C2;
} XtsState;