Merge pull request #3967 from FearlessTobi/keys-singleton

crypto: Make KeyManager a singleton class
This commit is contained in:
David 2020-07-01 14:16:26 +10:00 committed by GitHub
commit 3bb63bc0b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 27 additions and 21 deletions

View file

@ -302,7 +302,7 @@ private:
rb.Push<u64>(write_size);
}
Core::Crypto::KeyManager keys;
Core::Crypto::KeyManager& keys = Core::Crypto::KeyManager::instance();
};
void InstallInterfaces(SM::ServiceManager& service_manager) {