C# 클래스 AesEncrypter.EncryptionManager

파일 보기 프로젝트 열기: vchelaru/FlatRedBall 1 사용 예제들

공개 메소드들

메소드 설명
DecryptFromBytes ( byte encryptedBytes ) : byte[]
DecryptFromStream ( Stream stream, int encryptedByteCount ) : byte[]
DecryptFromStreamToStream ( Stream fromStream, Stream toStream, Action updateAction = null ) : void
EncryptToBytes ( byte unencryptedBytes ) : byte[]
EncryptionManager ( ) : System

비공개 메소드들

메소드 설명
AssignByteArrayFromString ( string value, byte byteArray ) : void
CopyFromStreamToStream ( Stream fromStream, Stream toStream, int size, Action updateAction ) : void
GetDecryptStream ( Stream encryptedStream ) : CryptoStream
IsValidKeyOrVector ( string value ) : bool

메소드 상세

DecryptFromBytes() 공개 메소드

public DecryptFromBytes ( byte encryptedBytes ) : byte[]
encryptedBytes byte
리턴 byte[]

DecryptFromStream() 공개 메소드

public DecryptFromStream ( Stream stream, int encryptedByteCount ) : byte[]
stream Stream
encryptedByteCount int
리턴 byte[]

DecryptFromStreamToStream() 공개 메소드

public DecryptFromStreamToStream ( Stream fromStream, Stream toStream, Action updateAction = null ) : void
fromStream Stream
toStream Stream
updateAction Action
리턴 void

EncryptToBytes() 공개 메소드

public EncryptToBytes ( byte unencryptedBytes ) : byte[]
unencryptedBytes byte
리턴 byte[]

EncryptionManager() 공개 메소드

public EncryptionManager ( ) : System
리턴 System