mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-30 18:17:55 +00:00 
			
		
		
		
	Provide base64 keys in addition to hex encoded. (#1734)
* Provide base64 keys in addition to hex encoded. Accept these at unseal/rekey time. Also fix a bug where backup would not be honored when doing a rekey with no operation currently ongoing.
This commit is contained in:
		| @@ -45,7 +45,9 @@ type InitStatusResponse struct { | ||||
| } | ||||
|  | ||||
| type InitResponse struct { | ||||
| 	Keys         []string `json:"keys"` | ||||
| 	RecoveryKeys []string `json:"recovery_keys"` | ||||
| 	RootToken    string   `json:"root_token"` | ||||
| 	Keys            []string `json:"keys"` | ||||
| 	KeysB64         []string `json:"keys_base64"` | ||||
| 	RecoveryKeys    []string `json:"recovery_keys"` | ||||
| 	RecoveryKeysB64 []string `json:"recovery_keys_base64"` | ||||
| 	RootToken       string   `json:"root_token"` | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Jeff Mitchell
					Jeff Mitchell