Skip to content

gimre-xymcity/vanitygen-cpp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NEM Vanitygen in CPP, using ref10 implementation.

project file for Visual Studio 2013 community edition.

Example how to sign a data using provided privateKey:

// create key pair from provided privateKey
//
std::string someKeyInHexFormat;
nem::Key privateKey;
inputStringToPrivateKey(someKeyInHexFormat, privateKey.data());
KeyPair keyPair{ privateKey };

// compute the signature
std::vector<uint8_t> dataBin;
nem::Signature signature;
bool isCanonical = DsaSigner::sign(keyPair, dataBin.data(), data.size(), signature);

About

nem-compatible vanity generator in C++

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages