 | ISymmetricCryptographicProviderCreateDecryptingStream Method |
Create a decrypting stream
Namespace: SanteDB.Core.Security.ServicesAssembly: SanteDB.Core.Api (in SanteDB.Core.Api.dll) Version: 3.0.2081-alpha+b4ae72647f2cc271f89142f76fff26ad69e00f5a
SyntaxStream CreateDecryptingStream(
Stream underlyingStream,
byte[] key,
byte[] iv
)
Function CreateDecryptingStream (
underlyingStream As Stream,
key As Byte(),
iv As Byte()
) As Stream
Stream^ CreateDecryptingStream(
Stream^ underlyingStream,
array<unsigned char>^ key,
array<unsigned char>^ iv
)
abstract CreateDecryptingStream :
underlyingStream : Stream *
key : byte[] *
iv : byte[] -> Stream Parameters
- underlyingStream Stream
- The underlying stream to wrap
- key Byte
- The key to decrypt the stream
- iv Byte
- The initialization vector
Return Value
StreamThe wrapped stream
See Also