PublicTrusted returns a label for trusted, publicly readable data.
()
| 24 | |
| 25 | // PublicTrusted returns a label for trusted, publicly readable data. |
| 26 | func PublicTrusted() SecurityLabel { |
| 27 | return SecurityLabel{ |
| 28 | Integrity: IntegrityTrusted, |
| 29 | Confidentiality: ConfidentialityPublic, |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | // PublicUntrusted returns a label for untrusted, publicly readable data. |
| 34 | func PublicUntrusted() SecurityLabel { |
no outgoing calls
no test coverage detected