Exemplo 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));
        }
Exemplo 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));
        }
Exemplo 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));
        }
Exemplo 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));
        }
Exemplo 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));
        }
Exemplo n.º 6
0
 public static RcKey GenerateKey(byte[] pwd) => Factory.GenerateKey(pwd);
Exemplo n.º 7
0
 public static RcKey GenerateKey(string pwd, Encoding encoding) => Factory.GenerateKey(pwd, encoding);
Exemplo n.º 8
0
 public static RcKey GenerateKey() => Factory.GenerateKey();