IEncryptionService Interface

Provides an interface for encrypting and decrypting strings using the secret key from the application database.

Namespace:  Dundas.BI.Services
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (10.0.0.1002)
Syntax
public interface IEncryptionService
Methods
  NameDescription
Public methodDecrypt(String)
Decrypts the specified text.
Public methodDecrypt(Byte, Int32, Stream)
Decrypts the specified data and writes the decrypted bytes to the output stream.
Public methodEncrypt(String)
Encrypts the specified text.
Public methodEncrypt(Byte, Stream)
Encrypts the specified data and writes the encrypted bytes to the output stream.
Top
See Also