⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 otp_mppe.h

📁 使用最广泛的radius的linux的源码
💻 H
字号:
/* * $Id: otp_mppe.h,v 1.3 2006/11/14 21:22:21 fcusack Exp $ * *   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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA * * Copyright 2001,2002  Google, Inc. * Copyright 2005,2006 TRI-D Systems, Inc. */#ifndef OTP_MPPE_H#define OTP_MPPE_H#include <freeradius-devel/ident.h>RCSIDH(otp_mppe_h, "$Id: otp_mppe.h,v 1.3 2006/11/14 21:22:21 fcusack Exp $")/* Some hardcoding here ... because not all types have #defines */#define PW_MS_CHAP_CHALLENGE  ((311 << 16) | 11)#define PW_MS_CHAP_RESPONSE   ((311 << 16) | 1)#define PW_MS_CHAP2_RESPONSE  ((311 << 16) | 25)/* MPPE encryption policy */#define MPPE_ENC_POL_ENCRYPTION_FORBIDDEN "0x00000000"#define MPPE_ENC_POL_ENCRYPTION_ALLOWED   "0x00000001"#define MPPE_ENC_POL_ENCRYPTION_REQUIRED  "0x00000002"/* MPPE encryption types */#define MPPE_ENC_TYPES_RC4_40     "0x00000002"#define MPPE_ENC_TYPES_RC4_128    "0x00000004"#define MPPE_ENC_TYPES_RC4_40_128 "0x00000006"/* Translate the above into something easily usable. */static const char *otp_mppe_policy[3] = {  MPPE_ENC_POL_ENCRYPTION_FORBIDDEN,  MPPE_ENC_POL_ENCRYPTION_ALLOWED,  MPPE_ENC_POL_ENCRYPTION_REQUIRED };static const char *otp_mppe_types[3] = {  MPPE_ENC_TYPES_RC4_40,  MPPE_ENC_TYPES_RC4_128,  MPPE_ENC_TYPES_RC4_40_128 };#endif /* OTP_MPPE_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -