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