IEncryptionService Interface

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

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