IEncryptionHandler Interface

TG.INI

IEncryptionHandler Interface

An interface for handling encryption.

Namespace:  TG.INI.Encryption
Assembly:  TG.INI (in TG.INI.dll) Version: 1.2.2.0 (1.2.2.0)
Syntax
public interface IEncryptionHandler : IDisposable
Public Interface IEncryptionHandler
	Inherits IDisposable
public interface class IEncryptionHandler : IDisposable
type IEncryptionHandler =  
    interface
        interface IDisposable
    end

The IEncryptionHandler type exposes the following members.

Methods
  NameDescription
Public methodDecrypt
Decrypts a byte array to a byte array.
Public methodDecryptBase64
Decrypts a base64 string to an unencrypted Unicode string.
Public methodDecryptBase64ToByte
Decrypts a base64 string to an unencrypted byte array.
Public methodDecryptToString
Decrypts byte array to a Unicode string.
Public methodDispose (Inherited from IDisposable.)
Public methodEncrypt(Byte)
Encrypts a byte array to a byte array.
Public methodEncrypt(String)
Encrypts text to a byte array.
Public methodEncryptBase64(Byte)
Encrypts a byte array to a base64 string.
Public methodEncryptBase64(String)
Encrypts text to a base64 string.
Top
See Also