Ejemplo n.º 1
0
 /// <summary>
 /// Determine if the plain text and encrypted are ultimately the same.
 /// </summary>
 /// <param name="encrypted"></param>
 /// <param name="plainText"></param>
 /// <returns></returns>
 public static bool IsMatch(string encrypted, string plainText)
 {
     return(_provider.IsMatch(encrypted, plainText));
 }