]> Cypherpunks.ru repositories - gocheese.git/blob - sha256.go
Add auth with argon2i and sha256 hashed passwords
[gocheese.git] / sha256.go
1 /*
2 GoCheese -- Python private package repository and caching proxy
3 Copyright (C) 2019 Elena Balakhonova <balakhonova_e@riseup.net>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, version 3 of the License.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 // Python private package repository and caching proxy
19 package main
20
21 import (
22         "crypto/sha256"
23         "crypto/subtle"
24         "encoding/hex"
25         "fmt"
26 )
27
28 type SHA256AuthData []byte
29
30 func (expectedPasword SHA256AuthData) Auth(password string) bool {
31         hash := sha256.Sum256([]byte(password))
32         return subtle.ConstantTimeCompare(hash[:], []byte(expectedPasword)) == 1
33 }
34
35 func parseSHA256(params string) (Auther, error) {
36         if len(params) != 64 {
37                 return nil, fmt.Errorf("sha256 parameters %q have wrong format", params)
38         }
39         hash, err := hex.DecodeString(params)
40         return SHA256AuthData(hash), err
41 }