HomeSort by relevance Sort by last modified time
    Searched refs:mppe (Results 1 - 13 of 13) sorted by null

  /external/ppp/pppd/
ccp.h 40 bool mppe; /* do MPPE? */ member in struct:ccp_options
ccp.c 41 #ifdef MPPE
68 #ifdef MPPE
111 #ifdef MPPE
112 /* MPPE options are symmetrical ... we only set wantoptions here */
113 { "require-mppe", o_bool, &ccp_wantoptions[0].mppe,
114 "require MPPE encryption",
116 { "+mppe", o_bool, &ccp_wantoptions[0].mppe,
117 "require MPPE encryption"
    [all...]
chap_ms.c 46 * implementation in RFC 2759. Implemented MPPE functionality,
117 #ifdef MPPE
127 #ifdef MPPE
130 int mppe_keys_set = 0; /* Have the MPPE keys been set? */
133 /* For MPPE debug */
140 #include "fsm.h" /* Need to poke MPPE options */
664 #ifdef MPPE
731 /* "This is the MPPE Master Key" */
819 #endif /* MPPE */
839 #ifdef MPPE
    [all...]
auth.c 859 mppe_required = ccp_gotoptions[unit].mppe;
    [all...]
  /external/libppp/src/
mppe.c 26 * $FreeBSD: src/usr.sbin/ppp/mppe.c,v 1.28.26.1 2010/12/21 17:10:29 kensmith Exp $
57 #include "mppe.h"
76 * draft-ietf-pppext-mppe-04.txt
77 * draft-ietf-pppext-mppe-keys-02.txt
121 log_Printf(LogCCP, "MPPE: Unexpected output channel reset\n");
123 log_Printf(LogCCP, "MPPE: Output channel reset\n");
170 log_Printf(LogDEBUG, "MPPE: Output: Proto %02x (%d bytes)\n", *proto, ilen);
172 log_Printf(LogDEBUG, "MPPE: Output: Not encrypting\n");
178 log_DumpBp(LogDEBUG, "MPPE: Output: Encrypt packet:", mp);
208 /* Set MPPE packet prefix *
    [all...]
radius.c 591 r->mppe.policy = rad_cvt_int(data);
593 " MS-MPPE-Encryption-Policy %s\n",
594 radius_policyname(r->mppe.policy));
598 r->mppe.types = rad_cvt_int(data);
600 " MS-MPPE-Encryption-Types %s\n",
601 radius_typesname(r->mppe.types));
605 free(r->mppe.recvkey);
606 demangle(r, data, len, &r->mppe.recvkey, &r->mppe.recvkeylen);
608 " MS-MPPE-Recv-Key ********\n")
    [all...]
radius.h 70 } mppe; member in struct:radius
ccp.h 79 } mppe; member in struct:ccp_config
ccp.c 74 #include "mppe.h"
123 "MPPE", /* 18: Microsoft PPC (rfc2118) and */
124 /* Microsoft PPE (draft-ietf-pppext-mppe) */
201 prompt_Printf(arg->prompt, " MPPE: ");
202 if (ccp->cfg.mppe.keybits)
203 prompt_Printf(arg->prompt, "%d bits, ", ccp->cfg.mppe.keybits);
206 switch (ccp->cfg.mppe.state) {
218 ccp->cfg.mppe.required ? ", required" : "");
228 prompt_Printf(arg->prompt, " MPPE: %s\n",
261 ccp->cfg.mppe.keybits = 0
    [all...]
command.c     [all...]
  /frameworks/base/core/java/com/android/internal/net/
VpnProfile.java 58 public boolean mppe = true; // 8 field in class:VpnProfile
83 mppe = in.readInt() != 0;
104 out.writeInt(mppe ? 1 : 0);
138 profile.mppe = Boolean.valueOf(values[8]);
163 builder.append('\0').append(mppe);
  /packages/apps/Settings/src/com/android/settings/vpn2/
VpnDialog.java 93 mMppe = (CheckBox) mView.findViewById(R.id.mppe);
113 mMppe.setChecked(mProfile.mppe);
350 profile.mppe = mMppe.isChecked();
  /frameworks/base/services/java/com/android/server/connectivity/
Vpn.java 766 (profile.mppe ? "+mppe" : "nomppe"),
    [all...]

Completed in 903 milliseconds