decryptPath returns the path for Decrypt requests.
()
| 335 | |
| 336 | // decryptPath returns the path for Decrypt requests. |
| 337 | func (key *MasterKey) decryptPath() string { |
| 338 | return path.Join(key.EnginePath, "decrypt", key.KeyName) |
| 339 | } |
| 340 | |
| 341 | // encryptPayload returns the payload for an encrypt request of the dataKey. |
| 342 | func encryptPayload(dataKey []byte) map[string]interface{} { |
no outgoing calls