blob: a51439433b0a74b027c7392967e242b953d74673 [file] [log] [blame]
// Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto3";
package wimax_manager;
enum EAPType {
EAP_TYPE_NONE = 0;
EAP_TYPE_TLS = 1;
EAP_TYPE_TTLS_MD5 = 2;
EAP_TYPE_TTLS_MSCHAPV2 = 3;
EAP_TYPE_TTLS_CHAP = 4;
EAP_TYPE_AKA = 5;
}
message EAPParameters {
EAPType type = 1;
string anonymous_identity = 2;
string user_identity = 3;
string user_password = 4;
bool bypass_device_certificate = 5;
bool bypass_ca_certificate = 6;
}