Error joins the errors into a "; " separated string.
()
| 255 | |
| 256 | // Error joins the errors into a "; " separated string. |
| 257 | func (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. |
no outgoing calls