blob: eaef5b1c7677c0784a58b7efb2380f067da3f9cb [file] [log] [blame]
// Copyright 2013 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "cryptohome/vault_keyset_factory.h"
#include "cryptohome/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