MCPcopy
hub / github.com/getsops/sops / Error

Method Error

pgp/keysource.go:257–263  ·  view source on GitHub ↗

Error joins the errors into a "; " separated string.

()

Source from the content-addressed store, hash-verified

255
256// Error joins the errors into a "; " separated string.
257func (e errSet) Error() string {
258 str := make([]string, len(e))
259 for i, err := range e {
260 str[i] = err.Error()
261 }
262 return strings.Join(str, "; ")
263}
264
265// Encrypt encrypts the data key with the PGP key with the same
266// fingerprint as the MasterKey.

Callers 15

ImportContextMethod · 0.45
TestGnuPGHome_ImportFunction · 0.45
TestGnuPGHome_ImportFileFunction · 0.45
TestGnuPGHome_CleanupFunction · 0.45
TestGnuPGHome_ValidateFunction · 0.45
TestMasterKey_EncryptFunction · 0.45
TestMasterKey_DecryptFunction · 0.45

Calls

no outgoing calls

Tested by 15

TestGnuPGHome_ImportFunction · 0.36
TestGnuPGHome_ImportFileFunction · 0.36
TestGnuPGHome_CleanupFunction · 0.36
TestGnuPGHome_ValidateFunction · 0.36
TestMasterKey_EncryptFunction · 0.36
TestMasterKey_DecryptFunction · 0.36
TestMasterKey_getPubRingFunction · 0.36