PrivateTrusted returns a label for trusted data restricted to the readers of the originating repository. The reader set is opaque on the wire (a single "private" marker); the client engine resolves the concrete readers from the GitHub API on demand at egress decision time.
()
| 43 | // single "private" marker); the client engine resolves the concrete readers |
| 44 | // from the GitHub API on demand at egress decision time. |
| 45 | func PrivateTrusted() SecurityLabel { |
| 46 | return SecurityLabel{ |
| 47 | Integrity: IntegrityTrusted, |
| 48 | Confidentiality: ConfidentialityPrivate, |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | // PrivateUntrusted returns a label for untrusted data restricted to the |
| 53 | // readers of the originating repository. See PrivateTrusted for the reader |
no outgoing calls
no test coverage detected