forked from TrueCloudLab/frostfs-api-go
dfc2dd8a78
In previous implementation PToken contained the full Token structure. Since private token is used for data signature only, storing unused fields of a user token is impractical. To emphasize the purpose of the private part of the session, it makes sense to provide the user of the session package with its interface. The interface will only provide the functionality of data signing with private session key. This commit: * removes PToken structure from session package; * defines PrivateToken interface of private session part; * adds the implementation of PrivateToken on unexported struct; * provides the constructor that generates session key internally.
33 lines
593 B
Go
33 lines
593 B
Go
package session
|
|
|
|
import (
|
|
"crypto/rand"
|
|
"testing"
|
|
|
|
crypto "github.com/nspcc-dev/neofs-crypto"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestPrivateToken(t *testing.T) {
|
|
// create new private token
|
|
pToken, err := NewPrivateToken()
|
|
require.NoError(t, err)
|
|
|
|
// generate data to sign
|
|
data := make([]byte, 10)
|
|
_, err = rand.Read(data)
|
|
require.NoError(t, err)
|
|
|
|
// sign data via private token
|
|
sig, err := pToken.Sign(data)
|
|
require.NoError(t, err)
|
|
|
|
// check signature
|
|
require.NoError(t,
|
|
crypto.Verify(
|
|
crypto.UnmarshalPublicKey(pToken.PublicKey()),
|
|
data,
|
|
sig,
|
|
),
|
|
)
|
|
}
|