X-Git-Url: http://www.git.cypherpunks.ru/?p=gocheese.git;a=blobdiff_plain;f=sha256.go;h=3fe0e4e13316bf16146a40a973c3a758ce09521c;hp=a2d7beb7337155fe15523f3ddc096deb479fb20d;hb=HEAD;hpb=bb73b0ffb472af0f90676aa24fd092475485565e diff --git a/sha256.go b/sha256.go deleted file mode 100644 index a2d7beb..0000000 --- a/sha256.go +++ /dev/null @@ -1,41 +0,0 @@ -/* -GoCheese -- Python private package repository and caching proxy -Copyright (C) 2019 Elena Balakhonova - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, version 3 of the License. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -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 . -*/ - -// Python private package repository and caching proxy -package main - -import ( - "crypto/sha256" - "crypto/subtle" - "encoding/hex" - "fmt" -) - -type SHA256AuthData []byte - -func (expectedPasword SHA256AuthData) Auth(password string) bool { - hash := sha256.Sum256([]byte(password)) - return subtle.ConstantTimeCompare(hash[:], []byte(expectedPasword)) == 1 -} - -func parseSHA256(params string) (Auther, error) { - if len(params) != 64 { - return nil, fmt.Errorf("sha256 parameters %q have wrong format", params) - } - hash, err := hex.DecodeString(params) - return SHA256AuthData(hash), err -}