fix gofmt warnings and misspellings

This commit is contained in:
2023-03-31 15:17:49 +02:00
committed by T.v.Dein
parent 99b4dfab76
commit 3bbdfdb2aa
18 changed files with 3 additions and 21 deletions

View File

@@ -14,7 +14,6 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package api
import (
@@ -108,7 +107,7 @@ func AuthValidateAPIKey(c *fiber.Ctx, key string) (bool, error) {
return true, nil
}
// actual key comparision
// actual key comparison
for _, apicontext := range Apikeys {
hashedAPIKey := sha256.Sum256([]byte(apicontext.Key))
hashedKey := sha256.Sum256([]byte(key))