8b9711cb5e
* better waitlist-gating (cherry picked from commit 490fe02b7c3558da18678dfb651c92ec9c4a75b5) * fix broken test * linter fixes * linter fixes * make extension verification optional * add certifcate gating script for captplanet * fixing tests * linter fixes * linter fixes? * moar linter fixes * Revert "moar linter fixes" This reverts commit 8139ccbd73cbbead987b7667567844f50f7df2c8. * just kill me * refactor * refactor tests * liniter... * cleanup
46 lines
973 B
Go
46 lines
973 B
Go
// Copyright (C) 2018 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package node
|
|
|
|
import (
|
|
"context"
|
|
|
|
"storj.io/storj/pkg/provider"
|
|
)
|
|
|
|
// ID is the unique identifier of a Node in the overlay network
|
|
type ID string
|
|
|
|
// NewFullIdentity creates a new ID for nodes with difficulty and concurrency params
|
|
func NewFullIdentity(ctx context.Context, difficulty uint16, concurrency uint) (*provider.FullIdentity, error) {
|
|
ca, err := provider.NewCA(ctx, provider.NewCAOptions{
|
|
Difficulty: difficulty,
|
|
Concurrency: concurrency,
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
identity, err := ca.NewIdentity()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return identity, err
|
|
}
|
|
|
|
// String transforms the ID to a string type
|
|
func (n *ID) String() string {
|
|
return string(*n)
|
|
}
|
|
|
|
// Bytes transforms the ID to type []byte
|
|
func (n *ID) Bytes() []byte {
|
|
return []byte(*n)
|
|
}
|
|
|
|
// IDFromString trsansforms a string to a ID
|
|
func IDFromString(s string) *ID {
|
|
n := ID(s)
|
|
return &n
|
|
}
|