auth: Actually generate API secrets
This commit is contained in:
parent
16353dfebe
commit
3c9f88d043
10
node/api.go
10
node/api.go
@ -2,6 +2,9 @@ package node
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"crypto/rand"
|
||||||
|
"io"
|
||||||
|
"io/ioutil"
|
||||||
|
|
||||||
"github.com/filecoin-project/go-lotus/api"
|
"github.com/filecoin-project/go-lotus/api"
|
||||||
"github.com/filecoin-project/go-lotus/build"
|
"github.com/filecoin-project/go-lotus/build"
|
||||||
@ -61,9 +64,14 @@ func (a *API) AuthNew(ctx context.Context, perms []string) ([]byte, error) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
log.Warn("Generating new API secret")
|
log.Warn("Generating new API secret")
|
||||||
|
|
||||||
|
sk, err := ioutil.ReadAll(io.LimitReader(rand.Reader, 32))
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
key = types.KeyInfo{
|
key = types.KeyInfo{
|
||||||
Type: "jwt-hmac-secret",
|
Type: "jwt-hmac-secret",
|
||||||
PrivateKey: make([]byte, 32),
|
PrivateKey: sk,
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := a.Keystore.Put(JWTSecretName, key); err != nil {
|
if err := a.Keystore.Put(JWTSecretName, key); err != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user