namespace MediaBrowser.Model.Cryptography
{
    /// 
    /// Class containing global constants for Jellyfin Cryptography.
    /// 
    public static class Constants
    {
        /// 
        /// The default length for new salts.
        /// 
        public const int DefaultSaltLength = 128 / 8;
        /// 
        /// The default output length.
        /// 
        public const int DefaultOutputLength = 512 / 8;
        /// 
        /// The default amount of iterations for hashing passwords.
        /// 
        public const int DefaultIterations = 120000;
    }
}