예제 #1
0
 /// <summary>
 /// Decryptors the AES from string to double.
 /// </summary>
 /// <param name="inputvalue">The inputvalue.</param>
 /// <returns>System.String.</returns>
 public static double DecryptorAesToDouble(this string inputvalue)
 {
     return(ValueParse.GetDouble(Cryptographer.DecryptorAesToDecimal(inputvalue).ToString()));
 }
예제 #2
0
 /// <summary>
 /// Decryptors the AES from string to Decimal.
 /// </summary>
 /// <param name="inputvalue">The inputvalue.</param>
 /// <returns>System.String.</returns>
 public static decimal DecryptorAesToDecimal(this string inputvalue)
 {
     return(Cryptographer.DecryptorAesToDecimal(inputvalue));
 }