Discuss this help topic in SecureBlackbox Forum
Specifies encryption algorithm name.
Declaration
[C#]
string AlgorithmName;
[VB.NET]
Property AlgorithmName As String
[Pascal]
property AlgorithmName : WideString;
[C++]
void get_AlgorithmName(sb_u16string &OutResult);
void get_AlgorithmName(std::wstring &OutResult);
void set_AlgorithmName(const sb_u16string &Value);
void set_AlgorithmName(const std::wstring &Value);
[PHP]
string get_AlgorithmName()
void set_AlgorithmName(string $Value)
[Java]
String getAlgorithmName();
void setAlgorithmName(String Value);
Description
Use this property to specify the algorithm used to encrypt the data, and mode in which the algorithm was used.
Currently, the only supported algorithm is
Blowfish in
CFB mode, i.e.,
AlgorithmName = "Blowfish CFB".
Discuss this help topic in SecureBlackbox Forum