C# 클래스 Encryption.WindowsProtectedData

Encrypts data using Windows ProtectedData functionality. This does not require an encryption key, since the encryption/decryption is performed by Windows, and hence is a black-box. The downside of this approach is that the encrypted data can only be decrypted on the same physical server.
파일 보기 프로젝트 열기: agardiner/hfmcmd

공개 메소드들

메소드 설명
Decrypt ( string cipherText ) : string

Decrypts a string encrypted using Windows built-in ProtectedData

Encrypt ( string plainText ) : string

Encrypts a string using Windows built-in ProtectedData

메소드 상세

Decrypt() 공개 정적인 메소드

Decrypts a string encrypted using Windows built-in ProtectedData
public static Decrypt ( string cipherText ) : string
cipherText string
리턴 string

Encrypt() 공개 정적인 메소드

Encrypts a string using Windows built-in ProtectedData
public static Encrypt ( string plainText ) : string
plainText string
리턴 string