Exemple #1
0
        public static ICryptoValue Encrypt(DesTypes type, byte[] originalBytes, byte[] pwd, byte[] iv, byte[] salt)
        {
            var key      = Factory.GenerateKey(type, pwd, iv);
            var function = Factory.Create(type, key);

            return(function.Encrypt(originalBytes, salt));
        }
Exemple #2
0
        public static ICryptoValue Decrypt(DesTypes type, byte[] cipherBytes, byte[] pwd, byte[] iv, byte[] salt)
        {
            var key      = Factory.GenerateKey(type, pwd, iv);
            var function = Factory.Create(type, key);

            return(function.Decrypt(cipherBytes, salt));
        }
Exemple #3
0
        public static ICryptoValue Encrypt(byte[] originalBytes, byte[] pwd, byte[] iv)
        {
            var key      = Factory.GenerateKey(DesTypes.DES, pwd, iv);
            var function = Factory.Create(DesTypes.DES, key);

            return(function.Encrypt(originalBytes));
        }
Exemple #4
0
        public static ICryptoValue Decrypt(byte[] cipherBytes, byte[] pwd, byte[] iv)
        {
            var key      = Factory.GenerateKey(DesTypes.DES, pwd, iv);
            var function = Factory.Create(DesTypes.DES, key);

            return(function.Decrypt(cipherBytes));
        }
Exemple #5
0
        public static ICryptoValue Decrypt(string cipherText, string pwd, string iv, Encoding encoding = null)
        {
            encoding = encoding.SafeEncodingValue();
            var key      = Factory.GenerateKey(DesTypes.DES, pwd, iv, encoding);
            var function = Factory.Create(DesTypes.DES, key);

            return(function.Decrypt(cipherText, encoding));
        }
Exemple #6
0
        public static ICryptoValue Encrypt(DesTypes type, string originalText, string pwd, string iv, string salt, Encoding encoding = null)
        {
            encoding = encoding.SafeEncodingValue();
            var key      = Factory.GenerateKey(type, pwd, iv, encoding);
            var function = Factory.Create(type, key);

            return(function.Encrypt(originalText, salt, encoding));
        }
Exemple #7
0
        public static ICryptoValue Decrypt(DesTypes type, string cipherText, string pwd, string iv, string salt, CipherTextTypes cipherTextType, Encoding encoding = null, Func <string, byte[]> customConverter = null)
        {
            encoding = encoding.SafeEncodingValue();
            var key      = Factory.GenerateKey(type, pwd, iv, encoding);
            var function = Factory.Create(type, key);

            return(function.Decrypt(cipherText, salt, cipherTextType, encoding, customConverter));
        }
Exemple #8
0
 public static IDES Create(DesTypes type, DesKey key) => Factory.Create(type, key);
Exemple #9
0
 public static IDES Create(DesTypes type, byte[] pwd, byte[] iv) => Factory.Create(type, pwd, iv);
Exemple #10
0
 public static IDES Create(DesTypes type, string pwd, string iv, Encoding encoding = null) => Factory.Create(type, pwd, iv, encoding);
Exemple #11
0
 public static IDES Create(DesTypes type) => Factory.Create(type);
Exemple #12
0
 public static IDES Create() => Factory.Create();
Exemple #13
0
 public static DesKey GenerateKey(DesTypes type, byte[] pwd, byte[] iv) => Factory.GenerateKey(type, pwd, iv);
Exemple #14
0
 public static DesKey GenerateKey(DesTypes type, string pwd, string iv, Encoding encoding) => Factory.GenerateKey(type, pwd, iv, encoding);
Exemple #15
0
 public static DesKey GenerateKey(DesTypes type = DesTypes.DES) => Factory.GenerateKey(type);