blob: 82a3aeb6a073e12147f86ff82bf041b51944e54b [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://www.w3.org/TR/2017/WD-webauthn-20170505/#enumdef-publickeycredentialtype
enum PublicKeyCredentialType {
"public-key"
};
// https://w3c.github.io/webauthn/#alg-identifier
typedef long COSEAlgorithmIdentifier;
// https://www.w3.org/TR/2017/WD-webauthn-20170505/#dictdef-publickeycredentialparameters
dictionary PublicKeyCredentialParameters {
required PublicKeyCredentialType type;
required COSEAlgorithmIdentifier algorithm;
};