blob: 9941bddc9b5794b1b8e05da48e396ac0333d0c56 [file] [log] [blame]
// Copyright 2018 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.
#include "components/os_crypt/encryption_key_creation_util_ios.h"
namespace os_crypt {
EncryptionKeyCreationUtilIOS::EncryptionKeyCreationUtilIOS() = default;
EncryptionKeyCreationUtilIOS::~EncryptionKeyCreationUtilIOS() = default;
bool EncryptionKeyCreationUtilIOS::KeyAlreadyCreated() {
return false;
}
bool EncryptionKeyCreationUtilIOS::ShouldPreventOverwriting() {
return false;
}
void EncryptionKeyCreationUtilIOS::OnKeyWasFound() {}
void EncryptionKeyCreationUtilIOS::OnKeyWasStored() {}
void EncryptionKeyCreationUtilIOS::OnOverwritingPrevented() {}
void EncryptionKeyCreationUtilIOS::OnKeychainLookupFailed() {}
} // namespace os_crypt