37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
+
+
+
-
+
|
#define OID_organizationalUnitName @"2.5.4.11"
#define OID_SRVName @"1.3.6.1.5.5.7.8.7"
@interface X509Certificate: OFObject
{
X509 *crt;
OFDictionary *issuer;
OFDictionary *subject;
OFDictionary *subjectAlternativeName;
}
#ifdef OF_HAVE_PROPERTIES
// @property (opts) Type *name;
@property (readonly) OFDictionary *issuer, *subject, *subjectAlternativeName;
#endif
- initWithFile: (OFString*)file;
- initWithX509Struct: (X509*)cert;
- (OFDictionary*)issuer;
- (OFDictionary*)subject;
- (OFDictionary*)subjectAlternativeName;
|