sensitive.proto 803 B

1234567891011121314151617181920
  1. // THIS FILE IS DEPRECATED
  2. // Users should instead use the corresponding proto in the xds tree.
  3. // No new changes will be accepted here.
  4. syntax = "proto3";
  5. package udpa.annotations;
  6. import "google/protobuf/descriptor.proto";
  7. option go_package = "github.com/cncf/xds/go/annotations";
  8. extend google.protobuf.FieldOptions {
  9. // Magic number is the 28 most significant bits in the sha256sum of "udpa.annotations.sensitive".
  10. // When set to true, `sensitive` indicates that this field contains sensitive data, such as
  11. // personally identifiable information, passwords, or private keys, and should be redacted for
  12. // display by tools aware of this annotation. Note that that this has no effect on standard
  13. // Protobuf functions such as `TextFormat::PrintToString`.
  14. bool sensitive = 76569463;
  15. }