fido_ble_uuids.cc 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. // Copyright 2017 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "device/fido/cable/fido_ble_uuids.h"
  5. #include "build/build_config.h"
  6. namespace device {
  7. const char kFidoServiceUUID[] = "0000fffd-0000-1000-8000-00805f9b34fb";
  8. const char kFidoControlPointUUID[] = "f1d0fff1-deaa-ecee-b42f-c9ba7ed623bb";
  9. const char kFidoStatusUUID[] = "f1d0fff2-deaa-ecee-b42f-c9ba7ed623bb";
  10. const char kFidoControlPointLengthUUID[] =
  11. "f1d0fff3-deaa-ecee-b42f-c9ba7ed623bb";
  12. const char kFidoServiceRevisionUUID[] = "00002a28-0000-1000-8000-00805f9b34fb";
  13. const char kFidoServiceRevisionBitfieldUUID[] =
  14. "f1d0fff4-deaa-ecee-b42f-c9ba7ed623bb";
  15. const char kGoogleCableUUID128[] = "0000fde2-0000-1000-8000-00805f9b34fb";
  16. const char kGoogleCableUUID16[] = "fde2";
  17. const uint8_t kGoogleCableUUID[16] = {
  18. 0x00, 0x00, 0xfd, 0xe2, 0x00, 0x00, 0x10, 0x00,
  19. 0x80, 0x00, 0x00, 0x80, 0x5f, 0x9b, 0x34, 0xfb,
  20. };
  21. const char kFIDOCableUUID128[] = "0000fff9-0000-1000-8000-00805f9b34fb";
  22. const uint8_t kFIDOCableUUID[16] = {
  23. 0x00, 0x00, 0xff, 0xf9, 0x00, 0x00, 0x10, 0x00,
  24. 0x80, 0x00, 0x00, 0x80, 0x5f, 0x9b, 0x34, 0xfb,
  25. };
  26. } // namespace device