You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
543 B
Plaintext
24 lines
543 B
Plaintext
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
|
|
namespace DecryptAndEncryptionHelper
|
|
{
|
|
public class decode
|
|
{
|
|
DecryptAndEncryptionHelper helper = new DecryptAndEncryptionHelper(ConfigInformation.Key, ConfigInformation.Vector);
|
|
public string decode_exe(string conString_b)
|
|
{
|
|
return helper.Decrypto(conString_b);
|
|
}
|
|
public string encrypto_exe(string conString_b)
|
|
{
|
|
return helper.Encrypto(conString_b);
|
|
}
|
|
|
|
|
|
}
|
|
}
|