#include <stdio.h>
#include "api.h"
#include "utility.h"
int main(int argc, char const* argv[])
{
IV iv = {0x80, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
0x90, 0x80, 0x70, 0x60, 0x50, 0x40, 0x30, 0x07,
};
for (int i = 0; i< sizeof(iv.uc); i++) {
printf("%02x ", iv.uc[i]);
}
return 0;
}