CryptographicKey.Export 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Export() |
将密钥对导出到缓冲区。 |
Export(CryptographicPrivateKeyBlobType) |
在给定指定格式的情况下,将密钥对导出到缓冲区。 |
Export()
将密钥对导出到缓冲区。
public:
virtual IBuffer ^ Export() = Export;
/// [Windows.Foundation.Metadata.Overload("ExportDefaultPrivateKeyBlobType")]
IBuffer Export();
[Windows.Foundation.Metadata.Overload("ExportDefaultPrivateKeyBlobType")]
public IBuffer Export();
function export()
Public Function Export () As IBuffer
返回
包含密钥对的缓冲区。
- 属性
另请参阅
适用于
Export(CryptographicPrivateKeyBlobType)
在给定指定格式的情况下,将密钥对导出到缓冲区。
public:
virtual IBuffer ^ Export(CryptographicPrivateKeyBlobType BlobType) = Export;
/// [Windows.Foundation.Metadata.Overload("ExportPrivateKeyWithBlobType")]
IBuffer Export(CryptographicPrivateKeyBlobType const& BlobType);
[Windows.Foundation.Metadata.Overload("ExportPrivateKeyWithBlobType")]
public IBuffer Export(CryptographicPrivateKeyBlobType BlobType);
function export(BlobType)
Public Function Export (BlobType As CryptographicPrivateKeyBlobType) As IBuffer
参数
- BlobType
- CryptographicPrivateKeyBlobType
一个 CryptographicPrivateKeyBlobType 枚举值,该值指定缓冲区中密钥的格式。 默认值为 Pkcs8RawPrivateKeyInfo。
返回
包含密钥对的缓冲区。
- 属性