C# 클래스 MediaAppSample.Core.Services.CryptographyProvider

Interface used to access the cryptography functions of the executing platform. Additional details of encryption implementation method: http://msdn.microsoft.com/en-us/library/windows/apps/windows.security.cryptography.dataprotection.dataprotectionprovider.aspx
상속: ServiceBase
파일 보기 프로젝트 열기: Microsoft/TVHelpers

공개 메소드들

메소드 설명
DecryptAsync ( string message ) : Task

Decrypts an encrypted string

EncryptAsync ( string message ) : Task

Encrypts a string

비공개 메소드들

메소드 설명
CryptographyProvider ( ) : System

메소드 상세

DecryptAsync() 공개 메소드

Decrypts an encrypted string
public DecryptAsync ( string message ) : Task
message string String to decrypt
리턴 Task

EncryptAsync() 공개 메소드

Encrypts a string
public EncryptAsync ( string message ) : Task
message string String to encrypt
리턴 Task