36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
object: self];
}
return [super alloc];
}
+ (OFArray OF_GENERIC(OFX509Certificate *) *)
certificateChainFromIRI: (OFIRI *)IRI
{
if (OFX509CertificateImplementation != Nil)
return [OFX509CertificateImplementation
certificateChainFromIRI: IRI];
OF_UNRECOGNIZED_SELECTOR
}
@end
|
|
|
|
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
object: self];
}
return [super alloc];
}
+ (OFArray OF_GENERIC(OFX509Certificate *) *)
certificateChainFromPEMFileAtIRI: (OFIRI *)IRI
{
if (OFX509CertificateImplementation != Nil)
return [OFX509CertificateImplementation
certificateChainFromPEMFileAtIRI: IRI];
OF_UNRECOGNIZED_SELECTOR
}
@end
|