SQL Server
SQL Server
Convert PKCS12 / PFX to Java Keystore (JKS)
See more PFX/P12 Examples
Loads a PKCS12 / PFX file and saves it to a Java keystore (JKS) file.Chilkat SQL Server Downloads
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
-- Important: Do not use nvarchar(max). See the warning about using nvarchar(max).
DECLARE @sTmp0 nvarchar(4000)
DECLARE @success int
SELECT @success = 0
-- This example requires the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @pfx int
EXEC @hr = sp_OACreate 'Chilkat.Pfx', @pfx OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
-- Load the PKCS12 from a file
EXEC sp_OAMethod @pfx, 'LoadPfxFile', @success OUT, '/someDir/my.p12', 'myPfxPassword'
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @pfx, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @pfx
RETURN
END
DECLARE @jksPassword nvarchar(4000)
SELECT @jksPassword = 'myJksPassword'
DECLARE @alias nvarchar(4000)
SELECT @alias = 'firstPrivateKeyAlias'
DECLARE @jks int
EXEC @hr = sp_OACreate 'Chilkat.JavaKeyStore', @jks OUT
-- Convert to a Java keystore object.
-- The jksPassword is the password to be used for the JKS private key entries.
-- It may be the same as the PFX password, but can also be different if desired.
EXEC sp_OAMethod @pfx, 'ToJksObj', @success OUT, @alias, @jksPassword, @jks
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @pfx, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @pfx
EXEC @hr = sp_OADestroy @jks
RETURN
END
-- Save the Java keystore to a file.
EXEC sp_OAMethod @jks, 'ToFile', @success OUT, @jksPassword, '/myKeystores/my.jks'
IF @success <> 1
BEGIN
EXEC sp_OAGetProperty @jks, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @jks
EXEC @hr = sp_OADestroy @pfx
EXEC @hr = sp_OADestroy @jks
RETURN
END
PRINT 'Successfully converted PFX to JKS.'
EXEC @hr = sp_OADestroy @pfx
EXEC @hr = sp_OADestroy @jks
END
GO