mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-08-05 21:44:15 -04:00
Generate random salt for key derivation on init (#309)
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
This commit is contained in:
parent
e0ce2e8a51
commit
9a3bd38912
25 changed files with 342 additions and 317 deletions
|
@ -17,6 +17,8 @@ const (
|
|||
ConstellationMasterSecretStoreName = "constellation-mastersecret"
|
||||
// ConstellationMasterSecretKey is the name of the key for master secret in the master secret store secret.
|
||||
ConstellationMasterSecretKey = "mastersecret"
|
||||
// ConstellationMasterSecretSalt is the name of the key for salt in the master secret store secret.
|
||||
ConstellationMasterSecretSalt = "salt"
|
||||
|
||||
//
|
||||
// Ports.
|
||||
|
@ -50,7 +52,7 @@ const (
|
|||
ConfigFilename = "constellation-conf.yaml"
|
||||
DebugdConfigFilename = "cdbg-conf.yaml"
|
||||
AdminConfFilename = "constellation-admin.conf"
|
||||
MasterSecretFilename = "constellation-mastersecret.base64"
|
||||
MasterSecretFilename = "constellation-mastersecret.json"
|
||||
WGQuickConfigFilename = "wg0.conf"
|
||||
CoreOSAdminConfFilename = "/etc/kubernetes/admin.conf"
|
||||
KubeadmCertificateDir = "/etc/kubernetes/pki"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue