Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(SQL Server) Get a .pfx/.p12 Safe Bag AttributeDemonstrates how to get the value of a private key or certificate safe bag attribute. Safe bag attributes are associated with a key or certificate. They are attributes stored in the .p12/.pfx alongside a key or certificate. Note: This example requires Chilkat v9.5.0.83 or greater.
-- 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 @pfx int -- Use "Chilkat_9_5_0.Pfx" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.Pfx', @pfx OUT IF @hr <> 0 BEGIN PRINT 'Failed to create ActiveX component' RETURN END DECLARE @success int EXEC sp_OAMethod @pfx, 'LoadPfxFile', @success OUT, 'qa_data/pfx/test_ecdsa_secret.pfx', 'secret' IF @success = 0 BEGIN EXEC sp_OAGetProperty @pfx, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @pfx RETURN END DECLARE @json int EXEC sp_OAMethod @pfx, 'LastJsonData', @json OUT EXEC sp_OASetProperty @json, 'EmitCompact', 0 EXEC sp_OAMethod @json, 'Emit', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @json -- The LastJsonData provides information about the what is contained in the PFX after loading. -- For example: -- { -- "authenticatedSafe": { -- "contentInfo": [ -- { -- "type": "Data", -- "safeBag": [ -- { -- "type": "pkcs8ShroudedKeyBag", -- "attrs": { -- "localKeyId": "16777216", -- "keyContainerName": "{B99EB9E7-6AF7-42AF-A43A-D4B2225B7605}", -- "msStorageProvider": "Microsoft Software Key Storage Provider" -- } -- } -- ] -- }, -- { -- "type": "EncryptedData", -- "safeBag": [ -- { -- "type": "certBag", -- "attrs": { -- "localKeyId": "16777216" -- }, -- "subject": "EE", -- "serialNumber": "1a9da86df17ad411bb413b2aa724fe56fc71242d" -- }, -- { -- "type": "certBag", -- "subject": "CA", -- "serialNumber": "02742228acbf3dd2e71f403abd8281ab6d70d490" -- } -- ] -- } -- ] -- } -- } -- Use this online tool to generate parsing code from sample JSON: -- Generate Parsing Code from JSON -- In the above JSON, we can see the .pfx contains one private key (a pkcs8ShroudedKeyBag) and two certificates (each in a certBag). -- The certificates in a .pfx/.p12 are typicaly a single certificate with associated private key, along with the other certificates -- in the chain of authentication. -- We can see that the private key has 3 safebag attributes: localKeyId, keyContainerName, and msStorageProvider. -- The certificate associated with the private key contains one safebag attribute: localKeyId. -- Notice the localKeyId is the same. The localKeyId helps associate the private key that corresponds to the given certificate. -- Let's demonstrate the GetSafeBagAttr method: -- Get each of the private key safebag attributes: DECLARE @getPrivateKeyAttr int SELECT @getPrivateKeyAttr = 1 DECLARE @privateKeyIdx int SELECT @privateKeyIdx = 0 PRINT '---- private key safebag attributes ----' EXEC sp_OAMethod @pfx, 'GetSafeBagAttr', @sTmp0 OUT, @getPrivateKeyAttr, @privateKeyIdx, 'localKeyId' PRINT @sTmp0 EXEC sp_OAMethod @pfx, 'GetSafeBagAttr', @sTmp0 OUT, @getPrivateKeyAttr, @privateKeyIdx, 'keyContainerName' PRINT @sTmp0 EXEC sp_OAMethod @pfx, 'GetSafeBagAttr', @sTmp0 OUT, @getPrivateKeyAttr, @privateKeyIdx, 'storageProvider' PRINT @sTmp0 -- Get the localKeyId attribute for the 1st certificate. SELECT @getPrivateKeyAttr = 0 PRINT '---- cert safebag attributes ----' EXEC sp_OAMethod @pfx, 'GetSafeBagAttr', @sTmp0 OUT, @getPrivateKeyAttr, 0, 'localKeyId' PRINT @sTmp0 EXEC @hr = sp_OADestroy @pfx END GO |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.