Home | History | Annotate | Download | only in easy_unlock
      1 // Copyright 2014 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 
      5 #include "chrome/browser/chromeos/login/easy_unlock/easy_unlock_types.h"
      6 
      7 namespace chromeos {
      8 
      9 const char kEasyUnlockKeyMetaNameBluetoothAddress[] = "eu.btaddr";
     10 const char kEasyUnlockKeyMetaNamePsk[] = "eu.psk";
     11 const char kEasyUnlockKeyMetaNamePubKey[] = "eu.pubkey";
     12 const char kEasyUnlockKeyMetaNameChallenge[] = "eu.C";
     13 const char kEasyUnlockKeyMetaNameWrappedSecret[] = "eu.WUK";
     14 
     15 EasyUnlockDeviceKeyData::EasyUnlockDeviceKeyData() {
     16 }
     17 
     18 EasyUnlockDeviceKeyData::~EasyUnlockDeviceKeyData() {
     19 }
     20 
     21 }  // namespace chromeos
     22