mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-11 08:07:30 -04:00
11 lines
163 B
C
11 lines
163 B
C
#include "includes.h"
|
|
|
|
#include "common.h"
|
|
#include "aes.h"
|
|
#include "aes_wrap.h"
|
|
|
|
int aes_wrap(const u8 *kek, int n, const u8 *cipher, u8 *plain)
|
|
{
|
|
return -1;
|
|
}
|