36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
-
+
-
+
|
@throw [OFNotImplementedException exceptionWithSelector: _cmd
object: self];
}
return [super alloc];
}
+ (instancetype)privateKeyFromIRI: (OFIRI *)IRI
+ (instancetype)privateKeyFromPEMFileAtIRI: (OFIRI *)IRI
{
if (OFX509CertificatePrivateKeyImplementation != Nil)
return [OFX509CertificatePrivateKeyImplementation
privateKeyFromIRI: IRI];
privateKeyFromPEMFileAtIRI: IRI];
OF_UNRECOGNIZED_SELECTOR
}
@end
|