From 136064f4b2ca6ce0f94c011828a2198898bfee7a Mon Sep 17 00:00:00 2001 From: Lucas Nicodemus Date: Mon, 13 Apr 2015 14:57:24 -0600 Subject: [PATCH] Fix formatting of old aglo block Also spelled algorithms correctly --- TShockAPI/DB/UserManager.cs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/TShockAPI/DB/UserManager.cs b/TShockAPI/DB/UserManager.cs index 9a6cc08d..3696a179 100755 --- a/TShockAPI/DB/UserManager.cs +++ b/TShockAPI/DB/UserManager.cs @@ -462,17 +462,17 @@ namespace TShockAPI.DB } /// - /// A dictionary of hashing algortihms and an implementation object. + /// A dictionary of hashing algorithms and an implementation object. /// protected internal readonly Dictionary> HashTypes = new Dictionary> - { - {"sha512", () => new SHA512Managed()}, - {"sha256", () => new SHA256Managed()}, - {"md5", () => new MD5Cng()}, - {"sha512-xp", () => SHA512.Create()}, - {"sha256-xp", () => SHA256.Create()}, - {"md5-xp", () => MD5.Create()}, - }; + { + {"sha512", () => new SHA512Managed()}, + {"sha256", () => new SHA256Managed()}, + {"md5", () => new MD5Cng()}, + {"sha512-xp", () => SHA512.Create()}, + {"sha256-xp", () => SHA256.Create()}, + {"md5-xp", () => MD5.Create()}, + }; /// /// Returns a hashed string for a given string based on the config file's hash algo