blob: 33437174ae96b714bab6c203277cba33208eaae8 [file] [log] [blame] [edit]
// Copyright 2019 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SYSTEM_API_DBUS_U2F_DBUS_CONSTANTS_H_
#define SYSTEM_API_DBUS_U2F_DBUS_CONSTANTS_H_
namespace u2f {
// Interface exposed by the u2f daemon.
const char kU2FInterface[] = "org.chromium.U2F";
const char kU2FServicePath[] = "/org/chromium/U2F";
const char kU2FServiceName[] = "org.chromium.U2F";
// Signals of the u2f interface:
const char kU2FUserNotificationSignal[] = "UserNotification";
// Methods for WebAuthn:
const char kU2FMakeCredential[] = "MakeCredential";
const char kU2FGetAssertion[] = "GetAssertion";
const char kU2FHasCredentials[] = "HasCredentials";
const char kU2FHasLegacyCredentials[] = "HasLegacyCredentials";
const char kU2FCancelWebAuthnFlow[] = "CancelWebAuthnFlow";
const char kU2FIsPlatformAuthenticatorInitialized[] =
"IsPlatformAuthenticatorInitialized";
const char kU2FIsUvpaa[] = "IsUvpaa";
const char kU2FIsU2fEnabled[] = "IsU2fEnabled";
const char kU2FCountCredentialsInTimeRange[] = "CountCredentialsInTimeRange";
const char kU2FDeleteCredentialsInTimeRange[] = "DeleteCredentialsInTimeRange";
const char kU2FGetAlgorithms[] = "GetAlgorithms";
const char kU2FGetSupportedFeatures[] = "GetSupportedFeatures";
} // namespace u2f
#endif // SYSTEM_API_DBUS_U2F_DBUS_CONSTANTS_H_