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