Esempio n. 1
0
        public static string Convert2OriginalPassword
        (
            byte[] password,
            byte[] iv,
            byte[] key,
            int length
        )
        {
            ISerializable edo = EDObjectContext.CreateInstance();

            edo.IV  = iv;
            edo.Key = key;
            return(edo.DecryptoObject(password, length));
        }