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