aboutsummaryrefslogtreecommitdiffstats
path: root/modules/secret/secret.go
blob: d0e4deacb902abc1a9222143e6416b554a491248 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright 2019 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.

package secret

import (
	"crypto/rand"
	"encoding/base64"
)

// New creats a new secret
func New() (string, error) {
	return NewWithLength(32)
}

// NewWithLength creates a new secret for a given length
func NewWithLength(length int64) (string, error) {
	return randomString(length)
}

func randomBytes(len int64) ([]byte, error) {
	b := make([]byte, len)
	if _, err := rand.Read(b); err != nil {
		return nil, err
	}
	return b, nil
}

func randomString(len int64) (string, error) {
	b, err := randomBytes(len)
	return base64.URLEncoding.EncodeToString(b), err
}