MachineKey.Encode(Byte[], MachineKeyProtection) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
주의
This method is obsolete and is only provided for compatibility with existing code. It is recommended that new code use the Protect and Unprotect methods instead.
데이터를 암호화하거나 HMAC(해시 기반 메시지 인증 코드)를 추가합니다.
public:
static System::String ^ Encode(cli::array <System::Byte> ^ data, System::Web::Security::MachineKeyProtection protectionOption);
public static string Encode (byte[] data, System.Web.Security.MachineKeyProtection protectionOption);
[System.Obsolete("This method is obsolete and is only provided for compatibility with existing code. It is recommended that new code use the Protect and Unprotect methods instead.")]
public static string Encode (byte[] data, System.Web.Security.MachineKeyProtection protectionOption);
static member Encode : byte[] * System.Web.Security.MachineKeyProtection -> string
[<System.Obsolete("This method is obsolete and is only provided for compatibility with existing code. It is recommended that new code use the Protect and Unprotect methods instead.")>]
static member Encode : byte[] * System.Web.Security.MachineKeyProtection -> string
Public Shared Function Encode (data As Byte(), protectionOption As MachineKeyProtection) As String
매개 변수
- data
- Byte[]
암호화할 데이터입니다.
- protectionOption
- MachineKeyProtection
data
매개 변수를 암호화 및/또는 해시해야 하는지를 나타냅니다.
반환
암호화된 값, HMAC가 추가된 입력 값, 또는 HMAC가 추가된 입력 값의 암호화 결과입니다.
- 특성
예제
코드 예제는 클래스 개요를 MachineKey 참조하세요.
설명
ASP.NET 전달된 데이터의 암호를 해독하고 유효성을 검사하는 데 사용하는 암호화 및 해시 알고리즘에 대한 자세한 내용은 machineKey 요소(ASP.NET 설정 스키마)를 참조하세요.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET