Lines Matching refs:representation
31 public let representation: String variable
33 init(oid: String, representation: String) {
35 self.representation = representation
38 …ic static let commonName = ASN1DistinguishedNames(oid: "2.5.4.3", representation: "CN")
39 … static let dnQualifier = ASN1DistinguishedNames(oid: "2.5.4.46", representation: "DNQ")
40 … let serialNumber = ASN1DistinguishedNames(oid: "2.5.4.5", representation: "SERIALNUMBER…
41 …c let givenName = ASN1DistinguishedNames(oid: "2.5.4.42", representation: "GIVENNAME")
42 …atic let surname = ASN1DistinguishedNames(oid: "2.5.4.4", representation: "SURNAME")
43 …c static let organizationalUnitName = ASN1DistinguishedNames(oid: "2.5.4.11", representation: "OU")
44 …ic static let organizationName = ASN1DistinguishedNames(oid: "2.5.4.10", representation: "O")
45 …tatic let streetAddress = ASN1DistinguishedNames(oid: "2.5.4.9", representation: "STREET")
46 …lic static let localityName = ASN1DistinguishedNames(oid: "2.5.4.7", representation: "L")
47 …ic static let stateOrProvinceName = ASN1DistinguishedNames(oid: "2.5.4.8", representation: "ST")
48 …lic static let countryName = ASN1DistinguishedNames(oid: "2.5.4.6", representation: "C")
49 …t email = ASN1DistinguishedNames(oid: "1.2.840.113549.1.9.1", representation: "E")
68 if let representation = shortRepresentation(oid: oid) { in string() variable
69 result?.append(representation) in string()