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
(VBScript) Azure Key Vault Find CertificateSee more Azure Key Vault ExamplesLet's say you have the certificate locally, but not with the private key. You only have the certificate, such as in a .cer file, but not the .pfx. The purpose of this example is to show how to find the same certificate in Azure Key Vault, and return the Azure Key Vault's name for the certificate. Note: This example requires Chilkat v9.5.0.96 or later.
Dim fso, outFile Set fso = CreateObject("Scripting.FileSystemObject") 'Create a Unicode (utf-16) output text file. Set outFile = fso.CreateTextFile("output.txt", True, True) ' This requires the Chilkat API to have been previously unlocked. ' See Global Unlock Sample for sample code. ' We have a .cer file locally, and we want to find this same certificate in Azure Key Vault ' because we'll need Azure Key Vault's name (and version) for the certificate if we are going to ask ' Key Vault to sign using the cert's private key. ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.Cert") set cert = CreateObject("Chilkat.Cert") success = cert.LoadFromFile("qa_data/certs/myCert.cer") If (success = 0) Then outFile.WriteLine(cert.LastErrorText) WScript.Quit End If ' Let's the the SHA1 thumbprint for our cert in base64url format. This is the "x5t" member that we'll ' be seeking in the list of certificates returned from Azure Key Vault. ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.BinData") set bdThumbprint = CreateObject("Chilkat.BinData") success = bdThumbprint.AppendEncoded(cert.Sha1Thumbprint,"hex") seek_x5t = bdThumbprint.GetEncoded("base64url") outFile.WriteLine("Seeking the cert with x5t = " & seek_x5t) ' Provide information needed for Chilkat to automatically get an OAuth2 access token as needed. ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject") set json = CreateObject("Chilkat.JsonObject") success = json.UpdateString("client_id","APP_ID") success = json.UpdateString("client_secret","APP_PASSWORD") success = json.UpdateString("resource","https://vault.azure.net") success = json.UpdateString("token_endpoint","https://login.microsoftonline.com/TENANT_ID/oauth2/token") ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.Http") set http = CreateObject("Chilkat.Http") ' Instead of providing an actual access token, we give Chilkat the information that allows it to ' automatically fetch the access token using the OAuth2 client credentials flow. http.AuthToken = json.Emit() ' Download JSON containing information about the certs in the Azure Key Vault. ' Replace VAULT_NAME with the name of your Azure Key Vault. ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.StringBuilder") set sbResponse = CreateObject("Chilkat.StringBuilder") success = http.QuickGetSb("https://VAULT_NAME.vault.azure.net/certificates?api-version=7.4",sbResponse) If (success = 0) Then statusCode = http.LastStatus If (statusCode = 0) Then ' We did not get a response from the server.. outFile.WriteLine(http.LastErrorText) Else ' We received a response, but it was an error. outFile.WriteLine("Error response status code: " & statusCode) outFile.WriteLine("Error response:") outFile.WriteLine(sbResponse.GetAsString()) End If WScript.Quit End If ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject") set jsonResp = CreateObject("Chilkat.JsonObject") success = jsonResp.LoadSb(sbResponse) jsonResp.EmitCompact = 0 ' The JSON will contain an array of certs like this: ' { ' "value": [ ' { ' "id": "https://kvchilkat.vault.azure.net/certificates/BadSSL", ' "x5t": "U04xLnb8Ww7BKkW9dD7P1cCHNDY", ' "attributes": { ' "enabled": true, ' "nbf": 1674409014, ' "exp": 1737481014, ' "created": 1697294224, ' "updated": 1697294224 ' }, ' "subject": "" ' }, ' ... ' ... ' Find the record having an "x5t" value equal to the one we're seeking. ' jsonRec is a Chilkat.JsonObject Set jsonRec = jsonResp.FindRecord("value","x5t",seek_x5t,1) If (jsonResp.LastMethodSuccess = 0) Then outFile.WriteLine("Did not find a matching certificate.") Else outFile.WriteLine("Found the matching certificate.") ' The id is a value such as https://kvchilkat.vault.azure.net/certificates/BadSSL outFile.WriteLine("id: " & jsonRec.StringOf("id")) ' The name of the certificate is the last word after the final "/", such as "BadSSL" ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.StringBuilder") set sbId = CreateObject("Chilkat.StringBuilder") success = sbId.Append(jsonRec.StringOf("id")) certName = sbId.GetAfterFinal("/",0) outFile.WriteLine("name: " & certName) End If outFile.Close |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.