次の方法で共有


ISpanAuthenticatedEncryptor インターフェイス

定義

スパン ベースの API を介して認証された暗号化と復号化ルーチンを提供します。

public interface ISpanAuthenticatedEncryptor : Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.IAuthenticatedEncryptor
type ISpanAuthenticatedEncryptor = interface
    interface IAuthenticatedEncryptor
Public Interface ISpanAuthenticatedEncryptor
Implements IAuthenticatedEncryptor
実装

メソッド

名前 説明
Decrypt(ArraySegment<Byte>, ArraySegment<Byte>)

暗号化されたデータの BLOB の認証タグを検証し、復号化します。

(継承元 IAuthenticatedEncryptor)
Decrypt<TWriter>(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, TWriter)

暗号化されたデータの BLOB の認証タグを検証して復号化し、結果をバッファー ライターに書き込みます。

Encrypt(ArraySegment<Byte>, ArraySegment<Byte>)

データの一部を暗号化し、改ざんを防止します。

(継承元 IAuthenticatedEncryptor)
Encrypt<TWriter>(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, TWriter)

プレーンテキスト データの一部を暗号化して認証し、結果をバッファー ライターに書き込みます。

適用対象