ObjFW  Artifact [79d6ff70f5]

Artifact 79d6ff70f5868c7527e77cf98eee44a20bcb5bbc853ee4a9a805c6ce039ba41f:

  • File src/OFX509Certificate.m — part of check-in [7c058b9056] at 2024-11-30 18:13:19 on branch tls-server — OFX509Certificate: +[supports{PEM,PKCS12}Files] (user: js size: 2119) [more...]

/*
 * Copyright (c) 2008-2024 Jonathan Schleifer <js@nil.im>
 *
 * All rights reserved.
 *
 * This program is free software: you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License version 3.0 only,
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
 * version 3.0 for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3.0 along with this program. If not, see
 * <https://www.gnu.org/licenses/>.
 */

#include "config.h"

#import "OFX509Certificate.h"

#import "OFNotImplementedException.h"

Class OFX509CertificateImplementation = Nil;

@implementation OFX509Certificate
+ (instancetype)alloc
{
	if (self == [OFX509Certificate class]) {
		if (OFX509CertificateImplementation != Nil)
			return [OFX509CertificateImplementation alloc];

		@throw [OFNotImplementedException exceptionWithSelector: _cmd
								 object: self];
	}

	return [super alloc];
}

+ (bool)supportsPEMFiles
{
	return [OFX509CertificateImplementation supportsPEMFiles];
}

+ (bool)supportsPKCS12Files
{
	return [OFX509CertificateImplementation supportsPKCS12Files];
}

+ (OFArray OF_GENERIC(OFX509Certificate *) *)
    certificateChainFromPEMFileAtIRI: (OFIRI *)certificatesIRI
		       privateKeyIRI: (OFIRI *)privateKeyIRI
{
	if ([OFX509CertificateImplementation supportsPEMFiles])
		return [OFX509CertificateImplementation
		    certificateChainFromPEMFileAtIRI: certificatesIRI
				       privateKeyIRI: privateKeyIRI];

	OF_UNRECOGNIZED_SELECTOR
}

+ (OFArray OF_GENERIC(OFX509Certificate *) *)
    certificateChainFromPKCS12FileAtIRI: (OFIRI *)IRI
			     passphrase: (OFString *)passphrase
{
	if ([OFX509CertificateImplementation supportsPKCS12Files])
		return [OFX509CertificateImplementation
		    certificateChainFromPKCS12FileAtIRI: IRI
					     passphrase: passphrase];

	OF_UNRECOGNIZED_SELECTOR
}
@end