|
@@ -99,7 +99,7 @@ func (n *NodeData) validate() error {
|
|
|
if n.Proto != NodeProtoHTTP && n.Proto != NodeProtoHTTPS {
|
|
|
return util.NewValidationError(fmt.Sprintf("invalid node proto: %s", n.Proto))
|
|
|
}
|
|
|
- n.Key = kms.NewPlainSecret(util.GenerateUniqueID())
|
|
|
+ n.Key = kms.NewPlainSecret(util.GenerateOpaqueString())
|
|
|
n.Key.SetAdditionalData(n.Host)
|
|
|
if err := n.Key.Encrypt(); err != nil {
|
|
|
return fmt.Errorf("unable to encrypt node key: %w", err)
|