C# Class 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
Inheritance: ServiceBase
Afficher le fichier Open project: Microsoft/TVHelpers

Méthodes publiques

Méthode Description
DecryptAsync ( string message ) : Task

Decrypts an encrypted string

EncryptAsync ( string message ) : Task

Encrypts a string

Private Methods

Méthode Description
CryptographyProvider ( ) : System

Method Details

DecryptAsync() public méthode

Decrypts an encrypted string
public DecryptAsync ( string message ) : Task
message string String to decrypt
Résultat Task

EncryptAsync() public méthode

Encrypts a string
public EncryptAsync ( string message ) : Task
message string String to encrypt
Résultat Task