Newer
Older
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* Copyright (C) 2019 iopsys Software Solutions AB
* Author: MOHAMED Kallel <mohamed.kallel@pivasoftware.com>
*
*/
#ifndef __WEPKEY_H__
#define __WEPKEY_H__
#include "md5.h"
void wepkey64(char *passphrase, char strk64[4][11]);
void wepkey128(char *passphrase, char strk128[27]);
#endif /*__WEPKEY_H__*/