 | NullSymmetricCryptographicProviderCreateDecryptingStream Method |
Create a decrypting stream
Namespace: SanteDB.Core.SecurityAssembly: SanteDB.Core.Api (in SanteDB.Core.Api.dll) Version: 3.0.2081-alpha+b4ae72647f2cc271f89142f76fff26ad69e00f5a
Syntaxpublic Stream CreateDecryptingStream(
Stream underlyingStream,
byte[] key,
byte[] iv
)
Public Function CreateDecryptingStream (
underlyingStream As Stream,
key As Byte(),
iv As Byte()
) As Stream
public:
virtual Stream^ CreateDecryptingStream(
Stream^ underlyingStream,
array<unsigned char>^ key,
array<unsigned char>^ iv
) sealed
abstract CreateDecryptingStream :
underlyingStream : Stream *
key : byte[] *
iv : byte[] -> Stream
override 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
Implements
ISymmetricCryptographicProviderCreateDecryptingStream(Stream, Byte, Byte)
See Also