blob: 54ba25b02ac6e85c428a0e6f4e0dfb6c559ea3e6 [file] [log] [blame]
// Copyright (c) 2013 The Chromium OS 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 "vault_keyset_factory.h"
#include "vault_keyset.h"
namespace cryptohome {
VaultKeysetFactory::VaultKeysetFactory() { }
VaultKeysetFactory::~VaultKeysetFactory() { }
VaultKeyset* VaultKeysetFactory::New(Platform* platform, Crypto* crypto) {
VaultKeyset* v = new VaultKeyset();
v->Initialize(platform, crypto);
return v;
}
} // namespace cryptohome