• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2011 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef NET_SSL_SSL_CLIENT_CERT_TYPE_H_
6 #define NET_SSL_SSL_CLIENT_CERT_TYPE_H_
7 
8 namespace net {
9 
10 // TLS ClientCertificateType Identifiers
11 // http://www.iana.org/assignments/tls-parameters/tls-parameters.xml#tls-parameters-1
12 // Certificate types not listed in this enum will be ignored.
13 enum class SSLClientCertType {
14   kRsaSign = 1,
15   kEcdsaSign = 64,
16   kMaxValue = kEcdsaSign,
17 };
18 
19 }  // namespace net
20 
21 #endif  // NET_SSL_SSL_CLIENT_CERT_TYPE_H_
22