PublicUntrusted returns a label for untrusted, publicly readable data.
()
| 32 | |
| 33 | // PublicUntrusted returns a label for untrusted, publicly readable data. |
| 34 | func PublicUntrusted() SecurityLabel { |
| 35 | return SecurityLabel{ |
| 36 | Integrity: IntegrityUntrusted, |
| 37 | Confidentiality: ConfidentialityPublic, |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | // PrivateTrusted returns a label for trusted data restricted to the readers |
| 42 | // of the originating repository. The reader set is opaque on the wire (a |
no outgoing calls
no test coverage detected