MachineKey.Decode(String, 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 cli::array <System::Byte> ^ Decode(System::String ^ encodedData, System::Web::Security::MachineKeyProtection protectionOption);
public static byte[] Decode (string encodedData, 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 byte[] Decode (string encodedData, System.Web.Security.MachineKeyProtection protectionOption);
static member Decode : string * System.Web.Security.MachineKeyProtection -> byte[]
[<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 Decode : string * System.Web.Security.MachineKeyProtection -> byte[]
Public Shared Function Decode (encodedData As String, protectionOption As MachineKeyProtection) As Byte()
매개 변수
- encodedData
- String
해독 및/또는 유효성을 검사할 암호화된 데이터입니다.
- protectionOption
- MachineKeyProtection
encodedData
매개 변수를 암호화 및/또는 해시해야 하는지를 나타냅니다.
반환
Byte[]
해독된 데이터를 나타내는 Byte 배열입니다.
- 특성
예제
코드 예제는 클래스 개요를 MachineKey 참조하세요.
설명
ASP.NET 전달된 데이터의 암호를 해독하고 유효성을 검사하는 데 사용하는 암호화 및 해시 알고리즘에 대한 자세한 내용은 machineKey 요소(ASP.NET 설정 스키마)를 참조하세요.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET