Home
last modified time | relevance | path

Searched refs:NewKeyType (Results 1 – 3 of 3) sorted by relevance

/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/cpp-ethereum/libethcore/
H A DKeyManager.cpp357 KeyPair KeyManager::newKeyPair(KeyManager::NewKeyType _type) in newKeyPair()
371 if (_type == NewKeyType::NoVanity || in newKeyPair()
372 (_type == NewKeyType::DirectICAP && !a[0]) || in newKeyPair()
373 (_type == NewKeyType::FirstTwo && a[0] == a[1]) || in newKeyPair()
374 (_type == NewKeyType::FirstTwoNextTwo && a[0] == a[1] && a[2] == a[3]) || in newKeyPair()
375 (_type == NewKeyType::FirstThree && a[0] == a[1] && a[1] == a[2]) || in newKeyPair()
376 (_type == NewKeyType::FirstFour && a[0] == a[1] && a[1] == a[2] && a[2] == a[3]) in newKeyPair()
H A DKeyManager.h61 …enum class NewKeyType { DirectICAP = 0, NoVanity, FirstTwo, FirstTwoNextTwo, FirstThree, FirstFour… enum
118 static KeyPair newKeyPair(NewKeyType _type);
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/cpp-ethereum/libweb3jsonrpc/
H A DPersonal.cpp25 KeyPair p = KeyManager::newKeyPair(KeyManager::NewKeyType::NoVanity); in personal_newAccount()