ฉันสร้างสคริปต์ PowerShell ที่สามารถเขียนca-cert.crt
ไฟล์ตามใบรับรอง CA ที่ติดตั้งในที่เก็บใบรับรอง Windows ของคุณ (CurrentUser หรือ LocalMachine) เรียกใช้สคริปต์เช่นนี้:
CreateCaCert.ps1 -StoreLocation CurrentUser | Out-File -Encoding utf8 curl-ca-cert.crt
สิ่งนี้จะสร้างcurl-ca-cert.crt
ไฟล์ที่ควรเก็บไว้ในไดเรกทอรีเดียวกับcurl.exe
และคุณควรตรวจสอบไซต์เดียวกันกับที่คุณใช้ในแอปพลิเคชัน Windows ของคุณ (โปรดทราบว่าไฟล์นี้ยังสามารถใช้งานได้git
)
สคริปต์ "เป็นทางการ" สามารถพบได้ในGitHubแต่รุ่นเริ่มต้นอยู่ที่นี่เพื่อการอ้างอิง:
[CmdletBinding()]
Param(
[ValidateSet(
[System.Security.Cryptography.X509Certificates.StoreLocation]::CurrentUser,
[System.Security.Cryptography.X509Certificates.StoreLocation]::LocalMachine)]
[string]
$StoreLocation = [System.Security.Cryptography.X509Certificates.StoreLocation]::CurrentUser
)
$maxLineLength = 77
# Open the store
$store = New-Object System.Security.Cryptography.X509Certificates.X509Store ([System.Security.Cryptography.X509Certificates.StoreName]::AuthRoot, $StoreLocation)
$store.Open([System.Security.Cryptography.X509Certificates.OpenFlags]::ReadOnly);
# Write header
Write-Output "# Root certificates ($StoreLocation) generated at $(Get-Date)"
# Write all certificates
Foreach ($certificate in $store.Certificates)
{
# Start with an empty line
Write-Output ""
# Convert the certificate to a BASE64 encoded string
$certString = [Convert]::ToBase64String($certificate.Export([System.Security.Cryptography.X509Certificates.X509ContentType]::Cert));
# Write the actual certificate
Write-Output "# Friendly name: $($certificate.FriendlyName)"
Write-Output "# Issuer: $($certificate.Issuer)"
Write-Output "# Expiration: $($certificate.GetExpirationDateString())"
Write-Output "# Serial: $($certificate.SerialNumber)"
Write-Output "# Thumbprint: $($certificate.Thumbprint)"
Write-Output "-----BEGIN CERTIFICATE-----"
For ($i = 0; $i -lt $certString.Length; $i += $maxLineLength)
{
Write-Output $certString.Substring($i, [Math]::Min($maxLineLength, $certString.Length - $i))
}
Write-Output "-----END CERTIFICATE-----"
}