blob: 282e08b3e154256e871db2151c112badeeb7b2a7 [file] [log] [blame]
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "crypto/subtle_passkey.h"
namespace crypto {
SubtlePassKey::SubtlePassKey() = default;
SubtlePassKey::~SubtlePassKey() = default;
// static
SubtlePassKey SubtlePassKey::ForTesting() {
return SubtlePassKey{};
}
} // namespace crypto