IDataProtector インターフェイス

定義

データ保護サービスを提供できるインターフェイス。

public interface class IDataProtector : Microsoft::AspNetCore::DataProtection::IDataProtectionProvider
public interface IDataProtector : Microsoft.AspNetCore.DataProtection.IDataProtectionProvider
type IDataProtector = interface
    interface IDataProtectionProvider
Public Interface IDataProtector
Implements IDataProtectionProvider
派生
実装

メソッド

CreateProtector(String)

特定の IDataProtector 目的を作成します。

(継承元 IDataProtectionProvider)
Protect(Byte[])

プレーンテキスト データの一部を暗号化によって保護します。

Unprotect(Byte[])

暗号化によって保護されたデータの一部を保護解除します。

拡張メソッド

ToTimeLimitedDataProtector(IDataProtector)

ペイロードをIDataProtectorITimeLimitedDataProtector有限の有効期間で保護できるように、 を に変換します。

CreateProtector(IDataProtectionProvider, IEnumerable<String>)

特定の IDataProtector 目的の一覧を作成します。

CreateProtector(IDataProtectionProvider, String, String[])

特定の IDataProtector 目的の一覧を作成します。

Protect(IDataProtector, String)

プレーンテキスト データの一部を暗号化によって保護します。

Unprotect(IDataProtector, String)

暗号化によって保護されたデータの一部を保護解除します。

適用対象