当前位置: 首页>>代码示例>>C#>>正文


C# SHA512Managed.Initialize方法代码示例

本文整理汇总了C#中System.Security.Cryptography.SHA512Managed.Initialize方法的典型用法代码示例。如果您正苦于以下问题:C# SHA512Managed.Initialize方法的具体用法?C# SHA512Managed.Initialize怎么用?C# SHA512Managed.Initialize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Security.Cryptography.SHA512Managed的用法示例。


在下文中一共展示了SHA512Managed.Initialize方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: crypt

        /// <summary>
        ///  Returns the FSHP hash of password
        /// </summary>
        /// <param name="password">Encoded to bytes with UTF-8.</param>
        /// <param name="salt">Byte representation of salt to be used in hashing Encoded to bytes with UTF-8.</param>
        /// <param name="saltlen">Length of the salt to be generated.</param>
        /// <param name="rounds">Number of hashing rounds.</param>
        /// <param name="variant">FSHP variant indicating the behaviour and/or hashing algorithm
        ///  to be used.
        ///  0: SHA-1 (not recommended)
        ///  1: SHA-256
        ///  2: SHA-384
        ///  3: SHA-512
        /// </param>
        /// <returns>FSHP hash of password</returns>
        public static String crypt(byte[] password, byte[] salt, int saltlen, int rounds, int variant)
        {
            // Ensure we have sane values for salt length and rounds.
            if (saltlen < 0)
                saltlen = 0;
            if (rounds < 1)
                rounds = 1;

            // if salt is null, we generate a random one.
            RNGCryptoServiceProvider CryptoRng = new RNGCryptoServiceProvider();

            if (salt == null) {
                salt = new byte[saltlen];
                CryptoRng.GetBytes(salt);
            } else {
                saltlen = salt.Length;
            }

            HashAlgorithm hash;
            switch (variant) {
                case 0:
                    hash = new SHA1Managed();
                    break;
                case 1:
                    hash = new SHA256Managed();
                    break;
                case 2:
                    hash = new SHA384Managed();
                    break;
                case 3:
                    hash = new SHA512Managed();
                    break;
                default:
                    throw new Exception();
            }

            hash.Initialize();

            byte[] saltedPassword = new byte[salt.Length + password.Length];

            salt.CopyTo(saltedPassword, 0);
            password.CopyTo(saltedPassword, salt.Length);

            // Round 1
            byte[] hashBytes = hash.ComputeHash(saltedPassword);

            // ...and other rounds.
            for (int i = 1; i < rounds; i++) {
                hashBytes = hash.ComputeHash(hashBytes);
            }

            string meta = "{FSHP" + variant + "|" + saltlen + "|" + rounds +"}";
            byte[] saltdigest = new byte[salt.Length + hashBytes.Length];
            salt.CopyTo(saltdigest, 0);
            hashBytes.CopyTo(saltdigest, salt.Length);

            string b64saltdigest = Convert.ToBase64String(saltdigest);

            return meta + b64saltdigest;
        }
开发者ID:GunioRobot,项目名称:fshp-is-not-secure-anymore,代码行数:75,代码来源:FSHP.cs


注:本文中的System.Security.Cryptography.SHA512Managed.Initialize方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。