📄 md5.h
字号:
/* ************************************************************************* * Ralink Tech Inc. * 4F, No. 2 Technology 5th Rd. * Science-based Industrial Park * Hsin-chu, Taiwan, R.O.C. * * (c) Copyright 2002-2007, Ralink Technology, Inc. * * 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. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * * ************************************************************************* */#ifndef MD5_H#define MD5_H#define MD5_MAC_LEN 16#define u32 unsigned int#define u8 unsigned charstruct MD5Context { u32 buf[4]; u32 bits[2]; u8 in[64];};void MD5Init(struct MD5Context *context);void MD5Update(struct MD5Context *context, unsigned char *buf, unsigned len);void MD5Final(unsigned char digest[16], struct MD5Context *context);void MD5Transform(u32 buf[4], u32 in[16]);typedef struct MD5Context MD5_CTX;void md5_mac(u8 *key, size_t key_len, u8 *data, size_t data_len, u8 *mac);void hmac_md5(u8 *key, size_t key_len, u8 *data, size_t data_len, u8 *mac);#define SHA_DIGEST_LEN 20#endif /* MD5_H */#ifndef _AES_H#define _AES_H#ifndef uint8#define uint8 unsigned char#endif#ifndef uint32#define uint32 unsigned int#endiftypedef struct{ uint32 erk[64]; /* encryption round keys */ uint32 drk[64]; /* decryption round keys */ int nr; /* number of rounds */}aes_context;int aes_set_key( aes_context *ctx, uint8 *key, int nbits );void aes_encrypt( aes_context *ctx, uint8 input[16], uint8 output[16] );void aes_decrypt( aes_context *ctx, uint8 input[16], uint8 output[16] );int PasswordHash(char *password, unsigned char *ssid, int ssidlength, unsigned char *output);#endif /* aes.h */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -