C# Class NSoft.NFramework.Cryptography.Encryptors.AriaSymmetricEncryptor

Inheritance: ISymmetricEncryptor
ファイルを表示 Open project: debop/NFramework Class Usage Examples

Public Methods

Method Description
Decrypt ( byte cipher ) : byte[]

지정한 암호화된 정보를 복호화한다.

Dispose ( ) : void
Encrypt ( byte plainBytes ) : byte[]

지정한 정보를 암호화한다.

Private Methods

Method Description
GetEngine ( ) : AriaEngine

AriaEngine을 빌드하고 반환합니다.

SetupKey ( ) : void

Key값을 변경합니다.

Method Details

Decrypt() public method

지정한 암호화된 정보를 복호화한다.
public Decrypt ( byte cipher ) : byte[]
cipher byte 암호화된 정보
return byte[]

Dispose() public method

public Dispose ( ) : void
return void

Encrypt() public method

지정한 정보를 암호화한다.
public Encrypt ( byte plainBytes ) : byte[]
plainBytes byte 암호화할 정보
return byte[]