HslExtensionGetPEMPublicKey 方法 |
从RSA的算法对象里,获取到PEM格式的原始公钥数据,如果需要存储,或是显示,只需要 Convert.ToBase64String 方法
Obtain the original public key data in PEM format from the RSA algorithm object. If you need to store or display it,
you only need the Convert.ToBase64String method
命名空间:
HslCommunication
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public static byte[] GetPEMPublicKey(
this RSACryptoServiceProvider rsa
)
<ExtensionAttribute>
Public Shared Function GetPEMPublicKey (
rsa As RSACryptoServiceProvider
) As Byte()
public:
[ExtensionAttribute]
static array<unsigned char>^ GetPEMPublicKey(
RSACryptoServiceProvider^ rsa
)
[<ExtensionAttribute>]
static member GetPEMPublicKey :
rsa : RSACryptoServiceProvider -> byte[]
参数
- rsa
- 类型:System.Security.CryptographyRSACryptoServiceProvider
RSA 算法的加密解密对象
返回值
类型:
Byte原始的公钥数据
备注
在 Visual Basic 和 C# 中,这个方法可以当成为类型
RSACryptoServiceProvider 的实例方法来调用。在采用实例方法语法调用这个方法时,请省略第一个参数。请参考
扩展方法 (Visual Basic) 或
扩展方法 (C# 编程指南) 获取更多信息。
参见