forked from TrueCloudLab/frostfs-s3-gw
22 lines
348 B
Go
22 lines
348 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"crypto/ecdsa"
|
||
|
"time"
|
||
|
|
||
|
"github.com/nspcc-dev/neofs-authmate/accessbox/hcs"
|
||
|
"github.com/nspcc-dev/neofs-s3-gate/api/pool"
|
||
|
"go.uber.org/zap"
|
||
|
)
|
||
|
|
||
|
type (
|
||
|
authCenterParams struct {
|
||
|
Pool pool.Client
|
||
|
Logger *zap.Logger
|
||
|
Timeout time.Duration
|
||
|
|
||
|
GateAuthKeys *hcs.X25519Keys
|
||
|
NeoFSPrivateKey *ecdsa.PrivateKey
|
||
|
}
|
||
|
)
|