112 lines
2.3 KiB
Go
112 lines
2.3 KiB
Go
|
package common
|
||
|
|
||
|
import (
|
||
|
"crypto/aes"
|
||
|
"crypto/cipher"
|
||
|
"crypto/rand"
|
||
|
"encoding/hex"
|
||
|
"errors"
|
||
|
"fmt"
|
||
|
"golang.org/x/crypto/scrypt"
|
||
|
"io"
|
||
|
"log"
|
||
|
"strconv"
|
||
|
"strings"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func Hash(password, salt string) (string, error) {
|
||
|
passwordBytes := []byte(password)
|
||
|
saltBytes := []byte(salt)
|
||
|
|
||
|
derivedKey, err := scrypt.Key(passwordBytes, saltBytes, 32768, 8, 1, 64)
|
||
|
if err != nil {
|
||
|
log.Println("[ERROR] Unknown in hash() at", strconv.FormatInt(time.Now().Unix(), 10)+":", err)
|
||
|
return "", err
|
||
|
}
|
||
|
|
||
|
hashString := fmt.Sprintf("scrypt:32768:8:1$%s$%s", salt, hex.EncodeToString(derivedKey))
|
||
|
return hashString, nil
|
||
|
}
|
||
|
|
||
|
func VerifyHash(werkzeugHash, password string) (bool, error) {
|
||
|
parts := strings.Split(werkzeugHash, "$")
|
||
|
if len(parts) != 3 || parts[0] != "scrypt:32768:8:1" {
|
||
|
return false, errors.New("invalid hash format")
|
||
|
}
|
||
|
salt := parts[1]
|
||
|
|
||
|
computedHash, err := Hash(password, salt)
|
||
|
if err != nil {
|
||
|
return false, err
|
||
|
}
|
||
|
|
||
|
return werkzeugHash == computedHash, nil
|
||
|
}
|
||
|
|
||
|
func DecryptAES(key, ciphertext []byte) ([]byte, error) {
|
||
|
block, err := aes.NewCipher(key)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
gcm, err := cipher.NewGCM(block)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
if len(ciphertext) < gcm.NonceSize() {
|
||
|
return nil, errors.New("ciphertext too short")
|
||
|
}
|
||
|
|
||
|
nonce := ciphertext[:gcm.NonceSize()]
|
||
|
ciphertext = ciphertext[gcm.NonceSize():]
|
||
|
|
||
|
plaintext, err := gcm.Open(nil, nonce, ciphertext, nil)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
return plaintext, nil
|
||
|
}
|
||
|
|
||
|
func EncryptAES(key, text []byte) ([]byte, error) {
|
||
|
block, err := aes.NewCipher(key)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
gcm, err := cipher.NewGCM(block)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
nonce := make([]byte, gcm.NonceSize())
|
||
|
if _, err := io.ReadFull(rand.Reader, nonce); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
ciphertext := gcm.Seal(nonce, nonce, text, nil)
|
||
|
return ciphertext, nil
|
||
|
}
|
||
|
|
||
|
func GenSalt(length int) (string, error) {
|
||
|
saltChars := "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
|
||
|
|
||
|
if length <= 0 {
|
||
|
return "", errors.New("invalid length")
|
||
|
}
|
||
|
|
||
|
salt := make([]byte, length)
|
||
|
randomBytes := make([]byte, length)
|
||
|
_, err := rand.Read(randomBytes)
|
||
|
if err != nil {
|
||
|
return "", err
|
||
|
}
|
||
|
|
||
|
for i := range salt {
|
||
|
salt[i] = saltChars[int(randomBytes[i])%len(saltChars)]
|
||
|
}
|
||
|
return string(salt), nil
|
||
|
}
|