C# 클래스 Azavea.Open.Common.Cryptography.ITwoWayHash

An interface for classes that perform two-way encryption/decryption on an input.
파일 보기 프로젝트 열기: azavea/net-om-utils-common

공개 메소드들

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

decrypts cyphertext into plaintext

Encrypt ( string input ) : string

Encrypts a plaintext string into cyphertext

메소드 상세

Decrypt() 공개 추상적인 메소드

decrypts cyphertext into plaintext
public abstract Decrypt ( string input ) : string
input string cyphertext
리턴 string

Encrypt() 공개 추상적인 메소드

Encrypts a plaintext string into cyphertext
public abstract Encrypt ( string input ) : string
input string plaintext
리턴 string