Update sizes expectations for chrome-bss.
[chromium-blink-merge.git] / device / bluetooth / bluetooth_out_of_band_pairing_data.h
blob1b45bb0b9d233938d9ee21a553e94821d0660127
1 // Copyright (c) 2012 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.
5 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_OUT_OF_BAND_PAIRING_DATA_H_
6 #define DEVICE_BLUETOOTH_BLUETOOTH_OUT_OF_BAND_PAIRING_DATA_H_
8 #include "base/basictypes.h"
10 namespace device {
12 const size_t kBluetoothOutOfBandPairingDataSize = 16;
14 // A simple structure representing the data required to perform Out Of Band
15 // Pairing. See
16 // http://mclean-linsky.net/joel/cv/Simple%20Pairing_WP_V10r00.pdf
17 struct BluetoothOutOfBandPairingData {
18 // Simple Pairing Hash C.
19 uint8 hash[kBluetoothOutOfBandPairingDataSize];
21 // Simple Pairing Randomizer R.
22 uint8 randomizer[kBluetoothOutOfBandPairingDataSize];
25 } // namespace device
27 #endif // DEVICE_BLUETOOTH_BLUETOOTH_OUT_OF_BAND_PAIRING_DATA_H_