| // Package audit provides mechanisms to write method invocations to an audit log. |
| // Typical use would be for tracking sensitive operations like private key usage (NewPrivateID), |
| // or sensitive RPC method invocations. |
| // Auditor is the interface for writing auditable events. |
| // Entry is the information logged on each auditable event. |
| // Arguments to the method. |
| // Any sensitive data in the arguments should not be included, |
| // even if the argument was provided to the real method invocation. |
| // Result of the method invocation. |
| // A common use case is to audit only successful method invocations. |
| // Timestamp of method invocation. |