crypto: Use the correct pickle key when unpickling cross signing keys
This commit is contained in:
parent
5f1e972b3d
commit
e57d70b089
1 changed files with 1 additions and 1 deletions
|
@ -332,7 +332,7 @@ impl SledStore {
|
|||
};
|
||||
|
||||
let private_identity_pickle = if let Some(i) = changes.private_identity {
|
||||
Some(i.pickle(DEFAULT_PICKLE.as_bytes()).await?)
|
||||
Some(i.pickle(self.get_pickle_key()).await?)
|
||||
} else {
|
||||
None
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue