DocuSign 如何将私钥保存为 .PEM 文件
DocuSign how to save the Private key as a .PEM file
根据 JSON Web Token Bearer Grant 指南,建议我将私钥保存为 .PEM 文件
Note: If you’re working with sample code from one of the SDKs, save
the Private key as a .PEM file. The SDK is configured to read the
private key value from a file with this extension.
现在我已经生成了我的私钥:
----BEGIN RSA PRIVATE KEY----
****
----END RSA PRIVATE KEY-----
我如何将其保存为 .PEM 文件,是否只是将此私钥粘贴到记事本中而不是保存到 .txt 文件,我应该将扩展名更改为 .PEM?
还有什么安全原因我应该将私钥保存为 .pem 而不是 .txt?
你是对的,重要的是文件里面的内容,而不是扩展名。
因此您可以将 docusignPrivateKey.txt
重命名为 docusignPrivateKey.pem
或将其保留为 .txt
根据 JSON Web Token Bearer Grant 指南,建议我将私钥保存为 .PEM 文件
Note: If you’re working with sample code from one of the SDKs, save the Private key as a .PEM file. The SDK is configured to read the private key value from a file with this extension.
现在我已经生成了我的私钥:
----BEGIN RSA PRIVATE KEY----
****
----END RSA PRIVATE KEY-----
我如何将其保存为 .PEM 文件,是否只是将此私钥粘贴到记事本中而不是保存到 .txt 文件,我应该将扩展名更改为 .PEM?
还有什么安全原因我应该将私钥保存为 .pem 而不是 .txt?
你是对的,重要的是文件里面的内容,而不是扩展名。
因此您可以将 docusignPrivateKey.txt
重命名为 docusignPrivateKey.pem
或将其保留为 .txt