1 // Copyright 2024 The Chromium Authors 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 "crypto/subtle_passkey.h" 6 7 namespace crypto { 8 9 SubtlePassKey::SubtlePassKey() = default; 10 SubtlePassKey::~SubtlePassKey() = default; 11 12 // static ForTesting()13SubtlePassKey SubtlePassKey::ForTesting() { 14 return SubtlePassKey{}; 15 } 16 17 } // namespace crypto 18