namespace MediaBrowser.Common.Cryptography
{
///
/// Class containing global constants for Jellyfin Cryptography.
///
public static class Constants
{
///
/// The default length for new salts.
///
public const int DefaultSaltLength = 64;
///
/// The default amount of iterations for hashing passwords.
///
public const int DefaultIterations = 1000;
}
}