2022-11-02 09:54:36 +01:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-11-02 09:54:36 +01:00
|
|
|
|
|
|
|
package base
|
|
|
|
|
|
|
|
import (
|
2022-11-28 12:19:18 +01:00
|
|
|
"encoding/hex"
|
2022-11-02 09:54:36 +01:00
|
|
|
|
2023-02-22 20:21:46 +01:00
|
|
|
"github.com/minio/sha256-simd"
|
2022-11-02 09:54:36 +01:00
|
|
|
"golang.org/x/crypto/pbkdf2"
|
|
|
|
)
|
|
|
|
|
|
|
|
func HashToken(token, salt string) string {
|
|
|
|
tempHash := pbkdf2.Key([]byte(token), []byte(salt), 10000, 50, sha256.New)
|
2022-11-28 12:19:18 +01:00
|
|
|
return hex.EncodeToString(tempHash)
|
2022-11-02 09:54:36 +01:00
|
|
|
}
|