Search Results for

    Show / Hide Table of Contents

    Class Encrypter.RijndaelSimple

    Simple Rijndael (AES) helper that encrypts and decrypts strings to and from Base64 using CBC mode and a password-derived key, with most cryptographic parameters fixed as constants.

    Inheritance
    object
    Encrypter.RijndaelSimple
    Inherited Members
    object.GetType()
    object.MemberwiseClone()
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    Namespace: Reportman.Drawing
    Assembly: Reportman.Drawing.dll
    Syntax
    public static class Encrypter.RijndaelSimple

    Methods

    View Source

    DeCrypt(string, string)

    Declaration
    public static string DeCrypt(string encryptedText, string key)
    Parameters
    Type Name Description
    string encryptedText
    string key
    Returns
    Type Description
    string
    View Source

    Decrypt(string, string, string, string, int, string, int)

    Declaration
    public static string Decrypt(string textoEncriptado, string passBase, string saltValue, string hashAlgorithm, int passwordIterations, string initVector, int keySize)
    Parameters
    Type Name Description
    string textoEncriptado
    string passBase
    string saltValue
    string hashAlgorithm
    int passwordIterations
    string initVector
    int keySize
    Returns
    Type Description
    string
    View Source

    Encrypt(string, string)

    Declaration
    public static string Encrypt(string textToEncrypt, string key)
    Parameters
    Type Name Description
    string textToEncrypt
    string key
    Returns
    Type Description
    string
    View Source

    Encrypt(string, string, string, string, int, string, int)

    Declaration
    public static string Encrypt(string textoQueEncriptaremos, string passBase, string saltValue, string hashAlgorithm, int passwordIterations, string initVector, int keySize)
    Parameters
    Type Name Description
    string textoQueEncriptaremos
    string passBase
    string saltValue
    string hashAlgorithm
    int passwordIterations
    string initVector
    int keySize
    Returns
    Type Description
    string
    • View Source
    In this article
    Back to top Generated by DocFX