Objective-C
Objective-C
Convert PKCS12 / PFX to Java KeyStore
See more Java KeyStore (JKS) Examples
Converts a PKCS12 / PFX file to a Java keystore (JKS) file.Chilkat Objective-C Downloads
#import <CkoJavaKeyStore.h>
#import <CkoPfx.h>
#import <NSString.h>
BOOL success = NO;
// This requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkoJavaKeyStore *jks = [[CkoJavaKeyStore alloc] init];
CkoPfx *pfx = [[CkoPfx alloc] init];
NSString *pfxPassword = @"secret";
// Load a PKCS12 from a file.
success = [pfx LoadPfxFile: @"/someDir/my.p12" password: pfxPassword];
if (success != YES) {
NSLog(@"%@",pfx.LastErrorText);
return;
}
NSString *alias = @"someAlias";
NSString *jksPassword = @"jksSecret";
// Add the PKCS12 to the empty Java keystore object:
success = [jks AddPfx: pfx alias: alias password: jksPassword];
if (success != YES) {
NSLog(@"%@",jks.LastErrorText);
return;
}
// Write the Java keystore to a file:
success = [jks ToFile: jksPassword path: @"/jksFiles/my.jks"];
if (success != YES) {
NSLog(@"%@",jks.LastErrorText);
}
else {
NSLog(@"%@",@"Successfully converted PKCS12 to JKS");
}