xref: /netbsd-src/external/bsd/wpa/bin/hostapd/aes-xinternal.c (revision f56ebce961246096a4f5dd12dc548a6cf8dcfb15)
1 #include "includes.h"
2 
3 #include "common.h"
4 #include "aes.h"
5 #include "aes_wrap.h"
6 
aes_wrap(const u8 * kek,size_t kek_len,int n,const u8 * cipher,u8 * plain)7 int aes_wrap(const u8 *kek, size_t kek_len, int n, const u8 *cipher, u8 *plain)
8 {
9 	return -1;
10 }
11