次の方法で共有


SymmetricAlgorithm.TryEncryptCbcCore メソッド

定義

派生クラスでオーバーライドされると、指定したパディング モードの CBC モードを使用して、指定したバッファーにデータを暗号化しようとします。

protected:
 virtual bool TryEncryptCbcCore(ReadOnlySpan<System::Byte> plaintext, ReadOnlySpan<System::Byte> iv, Span<System::Byte> destination, System::Security::Cryptography::PaddingMode paddingMode, [Runtime::InteropServices::Out] int % bytesWritten);
protected virtual bool TryEncryptCbcCore (ReadOnlySpan<byte> plaintext, ReadOnlySpan<byte> iv, Span<byte> destination, System.Security.Cryptography.PaddingMode paddingMode, out int bytesWritten);
abstract member TryEncryptCbcCore : ReadOnlySpan<byte> * ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.PaddingMode * int -> bool
override this.TryEncryptCbcCore : ReadOnlySpan<byte> * ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.PaddingMode * int -> bool
Protected Overridable Function TryEncryptCbcCore (plaintext As ReadOnlySpan(Of Byte), iv As ReadOnlySpan(Of Byte), destination As Span(Of Byte), paddingMode As PaddingMode, ByRef bytesWritten As Integer) As Boolean

パラメーター

plaintext
ReadOnlySpan<Byte>

暗号化するデータ。

iv
ReadOnlySpan<Byte>

初期化ベクター。

destination
Span<Byte>

暗号テキスト データを受信するバッファー。

paddingMode
PaddingMode

暗号化テキストを生成し、復号化中に削除するために使用されるパディング モード。

bytesWritten
Int32

このメソッドから制御が戻るときに、 に書き込まれた合計バイト数が destination格納されます。

戻り値

true が暗号化されたデータを受信するのに十分な大きさであった場合 destination は 。それ以外の場合 falseは 。

例外

派生クラスが実装を提供していません。

注釈

派生クラスはこれをオーバーライドし、実装を提供する必要があります。

このメソッドの実装では、 にdestination正確にGetCiphertextLengthCbc(plaintext.Length, paddingMode)バイトを書き込み、 を介してbytesWritten報告する必要があります。

適用対象