SymmetricAlgorithm.TryEncryptEcb 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
嘗試使用 ECB 模式搭配指定的填補模式,將數據加密至指定的緩衝區。
public:
bool TryEncryptEcb(ReadOnlySpan<System::Byte> plaintext, Span<System::Byte> destination, System::Security::Cryptography::PaddingMode paddingMode, [Runtime::InteropServices::Out] int % bytesWritten);
public bool TryEncryptEcb (ReadOnlySpan<byte> plaintext, Span<byte> destination, System.Security.Cryptography.PaddingMode paddingMode, out int bytesWritten);
member this.TryEncryptEcb : ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.PaddingMode * int -> bool
Public Function TryEncryptEcb (plaintext As ReadOnlySpan(Of Byte), destination As Span(Of Byte), paddingMode As PaddingMode, ByRef bytesWritten As Integer) As Boolean
參數
- plaintext
- ReadOnlySpan<Byte>
要加密的資料。
- paddingMode
- PaddingMode
用來產生加密文字並在解密期間移除的填補模式。
- bytesWritten
- Int32
當這個方法傳回時,包含寫入 至 destination
的位元組總數。
傳回
true
如果 destination
夠大,無法接收加密的數據,則為 ,否則為 false
。
例外狀況
paddingMode
不是有效的填補模式。
無法成功加密純文字。
備註
這個方法的行為是由 TryEncryptEcbCore(ReadOnlySpan<Byte>, Span<Byte>, PaddingMode, Int32)所定義。