Home
last modified time | relevance | path

Searched refs:_keysFile (Results 1 – 2 of 2) sorted by relevance

/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/cpp-ethereum/libethcore/
H A DKeyManager.h63 …KeyManager(boost::filesystem::path const& _keysFile = defaultPath(), boost::filesystem::path const…
66 void setKeysFile(boost::filesystem::path const& _keysFile) { m_keysFile = _keysFile; } in setKeysFile() argument
131 bool write(boost::filesystem::path const& _keysFile) const;
132 …void write(std::string const& _pass, boost::filesystem::path const& _keysFile) const; // TODO: all…
133 void write(SecureFixedHash<16> const& _key, boost::filesystem::path const& _keysFile) const;
H A DKeyManager.cpp21 KeyManager::KeyManager(fs::path const& _keysFile, fs::path const& _secretsPath): in KeyManager() argument
22 m_keysFile(_keysFile), m_store(_secretsPath) in KeyManager()
315 bool KeyManager::write(fs::path const& _keysFile) const in write()
319 write(m_keysFileKey, _keysFile); in write()
323 void KeyManager::write(string const& _pass, fs::path const& _keysFile) const in write()
326 writeFile(appendToFilename(_keysFile, ".salt"), salt, true); in write()
331 write(key, _keysFile); in write()
334 void KeyManager::write(SecureFixedHash<16> const& _key, fs::path const& _keysFile) const in write()
352 writeFile(_keysFile, encryptSymNoAuth(_key, h128(), &s.out()), true); in write()