2022-11-02 02:54:36 -06:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-11-02 02:54:36 -06:00
|
|
|
|
|
|
|
package base
|
|
|
|
|
|
|
|
import (
|
2022-11-28 04:19:18 -07:00
|
|
|
"encoding/hex"
|
2022-11-02 02:54:36 -06:00
|
|
|
|
2023-02-22 12:21:46 -07:00
|
|
|
"github.com/minio/sha256-simd"
|
2022-11-02 02:54:36 -06: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 04:19:18 -07:00
|
|
|
return hex.EncodeToString(tempHash)
|
2022-11-02 02:54:36 -06:00
|
|
|
}
|