如何获取pfx文件的base 64编码形式??我正在尝试实现一个azure资源管理器模板
https://github.com/Azure/azure-quickstart-templates/blob/master/101-application-gateway-public-ip-ssl-offload/azuredeploy.json
"certData": {
"type": "string",
"metadata": {
"description": "Base-64 encoded form of the .pfx file"
}
},
您可以看到证书数据需要该信息
答案 0 :(得分:2)
根据您的描述,我建议您尝试使用以下powershell命令生成Base-64编码的字符串。
$fileContentBytes = get-content 'D:\brando.pfx' -Encoding Byte
[System.Convert]::ToBase64String($fileContentBytes) | Out-File 'D:\pfx-bytes.txt'
它会将pfx转换为txt文件中的Base-64编码字符串。