예제 #1
0
 public static byte[] Decrypt(byte[] inputData, RSAKey key) => Decrypt(inputData, key.Keys);
예제 #2
0
 public static byte[] Decrypt(string inputData, RSAKey key) => Decrypt(inputData.GetBytes(), key);
예제 #3
0
 public static bool SignatureValidate(byte[] inputData, byte[] signatureData, RSAKey key) => SignatureValidate(inputData, signatureData, key.PublicKey);
예제 #4
0
 public static byte[] Encrypt(byte[] inputData, RSAKey key) => Encrypt(inputData, key.PublicKey);
예제 #5
0
 public static byte[] Signature(byte[] inputData, RSAKey key) => Signature(inputData, key.Keys);