Esempio n. 1
0
        public static ICryptoValue Decrypt(byte[] cipherBytes, byte[] pwd)
        {
            var key      = Factory.GenerateKey(pwd);
            var function = Factory.Create(RcTypes.RC4, key);

            return(function.Decrypt(cipherBytes));
        }
Esempio n. 2
0
        public static ICryptoValue Encrypt(RcTypes type, byte[] originalBytes, byte[] pwd)
        {
            var key      = Factory.GenerateKey(pwd);
            var function = Factory.Create(type, key);

            return(function.Encrypt(originalBytes));
        }
Esempio n. 3
0
        public static ICryptoValue Decrypt(RcTypes type, string cipherText, string pwd, CipherTextTypes cipherTextType, Encoding encoding = null, Func <string, byte[]> customConverter = null)
        {
            encoding = encoding.SafeEncodingValue();
            var key      = Factory.GenerateKey(pwd, encoding);
            var function = Factory.Create(type, key);

            return(function.Decrypt(cipherText, cipherTextType, encoding, customConverter));
        }
Esempio n. 4
0
        public static ICryptoValue Decrypt(RcTypes type, string cipherText, string pwd, Encoding encoding = null)
        {
            encoding = encoding.SafeEncodingValue();
            var key      = Factory.GenerateKey(pwd, encoding);
            var function = Factory.Create(type, key);

            return(function.Decrypt(cipherText, encoding));
        }
Esempio n. 5
0
        public static ICryptoValue Encrypt(string originalText, string pwd, Encoding encoding = null)
        {
            encoding = encoding.SafeEncodingValue();
            var key      = Factory.GenerateKey(pwd, encoding);
            var function = Factory.Create(RcTypes.RC4, key);

            return(function.Encrypt(originalText, encoding));
        }
Esempio n. 6
0
 public static IRC Create(RcTypes type, byte[] pwd) => Factory.Create(type, pwd);
Esempio n. 7
0
 public static IRC Create(RcTypes type, RcKey key) => Factory.Create(type, key);
Esempio n. 8
0
 public static IRC Create(RcTypes type, string pwd, Encoding encoding = null) => Factory.Create(type, pwd, encoding);
Esempio n. 9
0
 public static IRC Create(RcTypes type) => Factory.Create(type);
Esempio n. 10
0
 public static RcKey GenerateKey(byte[] pwd) => Factory.GenerateKey(pwd);
Esempio n. 11
0
 public static RcKey GenerateKey(string pwd, Encoding encoding) => Factory.GenerateKey(pwd, encoding);
Esempio n. 12
0
 public static RcKey GenerateKey() => Factory.GenerateKey();