31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
*/
@interface OFX509Certificate: OFObject
{
OF_RESERVE_IVARS(OFX509Certificate, 4)
}
/**
* @brief Returns a certificate chain from the specified IRI.
*
* @param IRI The IRI to retrieve the certificate chain from
*
* @throw OFOpenItemFailedException Opening the item failed
* @throw OFUnsupportedProtocolException The specified IRI is not supported
* @throw OFReadFailedException Reading the item failed
* @throw OFInvalidFormatException The format of the item is invalid
*/
+ (OFArray OF_GENERIC(OFX509Certificate *) *)
certificateChainFromIRI: (OFIRI *)IRI;
@end
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief The implementation for OFX509Certificate to use.
|
|
|
|
|
|
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
*/
@interface OFX509Certificate: OFObject
{
OF_RESERVE_IVARS(OFX509Certificate, 4)
}
/**
* @brief Returns the certificate chain from the PEM file at the specified IRI.
*
* @param IRI The IRI to the PEM file to retrieve the certificate chain from
* @return An array of @ref OFX509Certificate
* @throw OFOpenItemFailedException Opening the item failed
* @throw OFUnsupportedProtocolException The specified IRI is not supported
* @throw OFReadFailedException Reading the item failed
* @throw OFInvalidFormatException The format of the item is invalid
*/
+ (OFArray OF_GENERIC(OFX509Certificate *) *)
certificateChainFromPEMFileAtIRI: (OFIRI *)IRI;
@end
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief The implementation for OFX509Certificate to use.
|