aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Cryptography
AgeCommit message (Collapse)Author
2021-11-10Replace PBKDF2-SHA1 with PBKDF2-SHA512Bond_009
This also migrates already created passwords on login Source for the number of iterations: https://cheatsheetseries.owasp.org/cheatsheets/Password_Storage_Cheat_Sheet.html#pbkdf2
2021-05-05Enable nullable reference types for MediaBrowser.CommonBond_009
2021-04-17Remove unused using directivesBaronGreenback
2021-03-25Apply suggestions from code reviewBond-009
Co-authored-by: Cody Robibero <cody@robibe.ro>
2021-03-24Rewrite PasswordHash.Parse to work with ReadOnlySpansBond_009
2020-11-25Remove Hex class as the BCL has one nowBond_009
2020-04-02Enable Microsoft.CodeAnalysis.FxCopAnalyzers for Jellyfin.CommonBond_009
2020-02-23Fix some warningsBond_009
* Add analyzers to MediaBrowser.XbmcMetadata * Enable TreatWarningsAsErrors for MediaBrowser.XbmcMetadata * Add analyzers to MediaBrowser.WebDashboard * Enable TreatWarningsAsErrors for MediaBrowser.WebDashboard * Disable SA1600 in favor of CS1591
2019-12-11More warnings (removed)Bond_009
2019-11-23Merge pull request #1926 from Bond-009/authdkanada
Add clearer exceptions, warnings and docs
2019-11-01Rewrite hex encoder/decoderBond_009
2019-10-29More warning fixesBond_009
2019-10-20Add clearer exceptions, warnings and docsBond_009
2019-10-09Enable `TreatWarningsAsErrors` for MediaBrowser.Common and Emby.PhotosBond_009
Adds `#pragma warning disable CS1591` to all files in MediaBrowser.Common containing undocumented members.
2019-09-17Remove legacy auth code (#1677)Bond-009
* Remove legacy auth code * Adds tests so we don't break PasswordHash (again) * Clean up interfaces * Remove duplicate code * Use auto properties * static using * Don't use 'this' * Fix build