C# 클래스 Salsa20Cipher.Salsa20Engine

상속: ICipherEngine
파일 보기 프로젝트 열기: sbennett1990/KeePass-SalsaCipher

공개 메소드들

메소드 설명
DecryptStream ( Stream encryptedStream, byte key, byte iv ) : Stream

Decrypt the incoming encryptedStream.

EncryptStream ( Stream plainTextStream, byte key, byte iv ) : Stream

Encrypt the incoming plainTextStream.

Salsa20Engine ( ) : System.IO

Basic constructor

메소드 상세

DecryptStream() 공개 메소드

Decrypt the incoming encryptedStream.
public DecryptStream ( Stream encryptedStream, byte key, byte iv ) : Stream
encryptedStream System.IO.Stream
key byte
iv byte
리턴 System.IO.Stream

EncryptStream() 공개 메소드

Encrypt the incoming plainTextStream.
public EncryptStream ( Stream plainTextStream, byte key, byte iv ) : Stream
plainTextStream System.IO.Stream
key byte
iv byte
리턴 System.IO.Stream

Salsa20Engine() 공개 메소드

Basic constructor
public Salsa20Engine ( ) : System.IO
리턴 System.IO