• FRAMEWORK

Applications

Create Encrypted App Key

Encrypted Key:

Copy Encrypted Key

Code Usage

public static string Decoder(string encodedValue) { string result = string.Empty; FOStringDecryptor fosdec = new FOStringDecryptor(EncryptionAlgorithm.TripleDes); result = fosdec.Decrypt(encodedValue); fosdec = null; return result; }