HomeSort by relevance Sort by last modified time
    Searched defs:CertType (Results 1 - 2 of 2) sorted by null

  /frameworks/base/packages/Osu/src/com/android/hotspot2/pps/
Credential.java 15 public enum CertType {IEEE, x509v3}
33 private final CertType mCertType;
67 EAPMethod eapMethod, Credential.CertType certType, byte[] fingerPrint) {
73 mCertType = certType;
123 public static CertType mapCertType(String certType) throws OMAException {
124 if (certType.equalsIgnoreCase(CertTypeX509)) {
125 return CertType.x509v3;
126 } else if (certType.equalsIgnoreCase(CertTypeIEEE))
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/pps/
Credential.java 24 public enum CertType {IEEE, x509v3}
42 private final CertType mCertType;
76 EAPMethod eapMethod, Credential.CertType certType, byte[] fingerPrint) {
82 mCertType = certType;
140 mCertType = mEAPMethod.getEAPMethodID() == EAP.EAPMethodID.EAP_TLS ? CertType.x509v3 : null;
188 public static CertType mapCertType(String certType) throws OMAException {
189 if (certType.equalsIgnoreCase(CertTypeX509)) {
190 return CertType.x509v3
    [all...]

Completed in 72 milliseconds