Sample code for 30+ languages & platforms
SQL Server

Backup Windows Current User / Personal Certificates to a .zip

See more Certificates Examples

Demonstrates how to backup the certificates in the Windows registry-based Current User certificate store (in the "Personal" Logical Store as seen in certmgr.msc), to a zip archive. Certificates having an exportable private key are exported to .pfx files. Certificates with no private key, or with a non-exportable private key, are exported to .cer files.

Obviously, this example only runs on Windows computers.

Chilkat SQL Server Downloads

SQL Server
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    DECLARE @iTmp0 int
    -- Important: Do not use nvarchar(max).  See the warning about using nvarchar(max).
    DECLARE @sTmp0 nvarchar(4000)
    DECLARE @success int
    SELECT @success = 0

    DECLARE @certStore int
    EXEC @hr = sp_OACreate 'Chilkat.CertStore', @certStore OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @readOnly int
    SELECT @readOnly = 1
    EXEC sp_OAMethod @certStore, 'OpenCurrentUserStore', @success OUT, @readOnly
    IF Not @success
      BEGIN
        EXEC sp_OAGetProperty @certStore, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @certStore
        RETURN
      END

    DECLARE @pfxPassword nvarchar(4000)
    SELECT @pfxPassword = 'secret'

    DECLARE @allSuccess int
    SELECT @allSuccess = 1
    DECLARE @numSuccess int
    SELECT @numSuccess = 0

    DECLARE @zip int
    EXEC @hr = sp_OACreate 'Chilkat.Zip', @zip OUT

    EXEC sp_OAMethod @zip, 'NewZip', @success OUT, 'qa_output/personalCerts.zip'

    DECLARE @certData int
    EXEC @hr = sp_OACreate 'Chilkat.BinData', @certData OUT

    DECLARE @sbFilename int
    EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbFilename OUT

    -- Iterate over the certificates in the Current User store.
    DECLARE @cert int
    EXEC @hr = sp_OACreate 'Chilkat.Cert', @cert OUT

    DECLARE @numCerts int
    EXEC sp_OAGetProperty @certStore, 'NumCertificates', @numCerts OUT
    DECLARE @i int
    SELECT @i = 0
    WHILE @i < @numCerts
      BEGIN
        EXEC sp_OAMethod @certStore, 'GetCert', @success OUT, @i, @cert

        EXEC sp_OAGetProperty @cert, 'SubjectDN', @sTmp0 OUT
        PRINT 'DN = ' + @sTmp0

        EXEC sp_OAMethod @sbFilename, 'SetString', @success OUT, 'cert'
        EXEC sp_OAMethod @sbFilename, 'AppendInt', @success OUT, @i + 1

        DECLARE @bHasPrivateKey int
        EXEC sp_OAMethod @cert, 'HasPrivateKey', @bHasPrivateKey OUT
        EXEC sp_OAGetProperty @cert, 'PrivateKeyExportable', @iTmp0 OUT
        IF (@bHasPrivateKey = 1) and (@iTmp0 = 1)
          BEGIN
            -- Export to a .pfx
            EXEC sp_OAMethod @cert, 'ExportToPfxBd', @success OUT, @pfxPassword, 1, @certData
            IF @success = 1
              BEGIN
                EXEC sp_OAMethod @sbFilename, 'Append', @success OUT, '.pfx'
                EXEC sp_OAMethod @sbFilename, 'GetAsString', @sTmp0 OUT
                EXEC sp_OAMethod @zip, 'AddBd', @success OUT, @sTmp0, @certData
              END
          END
        ELSE
          BEGIN
            -- Export to a .cer
            EXEC sp_OAMethod @cert, 'ExportCertDerBd', @success OUT, @certData
            IF @success = 1
              BEGIN
                EXEC sp_OAMethod @sbFilename, 'Append', @success OUT, '.cer'
                EXEC sp_OAMethod @sbFilename, 'GetAsString', @sTmp0 OUT
                EXEC sp_OAMethod @zip, 'AddBd', @success OUT, @sTmp0, @certData
              END
          END
        IF @success <> 1
          BEGIN
            SELECT @allSuccess = 0
          END
        ELSE
          BEGIN
            SELECT @numSuccess = @numSuccess + 1
          END
        SELECT @i = @i + 1
      END

    IF @numSuccess > 0
      BEGIN
        EXEC sp_OAMethod @zip, 'WriteZipAndClose', @success OUT
        IF @success <> 1
          BEGIN
            EXEC sp_OAGetProperty @zip, 'LastErrorText', @sTmp0 OUT
            PRINT @sTmp0
            SELECT @allSuccess = 0
          END
      END


    PRINT 'All success = ' + @allSuccess

    EXEC @hr = sp_OADestroy @certStore
    EXEC @hr = sp_OADestroy @zip
    EXEC @hr = sp_OADestroy @certData
    EXEC @hr = sp_OADestroy @sbFilename
    EXEC @hr = sp_OADestroy @cert


END
GO