1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-keygen synced 2026-06-18 04:00:03 +02:00

Organize source files into directory.

This commit is contained in:
Henrik Hautakoski 2020-02-19 13:09:53 +01:00
parent 6195b42452
commit d6a4ae6db8
13 changed files with 21 additions and 21 deletions

View file

@ -18,12 +18,12 @@ include(GNUInstallDirs)
set (PROGRAM_EXE ${CMAKE_PROJECT_NAME})
set (PROGRAM_SOURCE
src/console.cpp
src/core/file.cpp
src/core/dictionary.cpp
src/string.cpp
src/base58.cpp
src/WIF.cpp
src/core/string.cpp
src/crypto/base58.cpp
src/crypto/WIF.cpp
src/console.cpp
src/key_search.cpp
src/key_search_helpers.cpp
src/benchmark.cpp

View file

@ -3,7 +3,7 @@
#include <cstdio>
#include <iterator>
#include <algorithm>
#include "../string.h"
#include "string.h"
#include "dictionary.h"
namespace eoskeygen {

View file

@ -24,7 +24,7 @@
#ifndef EOSIOKEYGEN_CORE_FILE_H
#define EOSIOKEYGEN_CORE_FILE_H
#include "../string.h"
#include "string.h"
#include <vector>
namespace eoskeygen {

View file

@ -21,11 +21,11 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef EOSIOKEYGEN_WIF_H
#define EOSIOKEYGEN_WIF_H
#ifndef EOSIOKEYGEN_CRYPTO_WIF_H
#define EOSIOKEYGEN_CRYPTO_WIF_H
#include <string>
#include "crypto/types.h"
#include "types.h"
namespace eoskeygen {
@ -37,4 +37,4 @@ void wif_print_key(const struct ec_keypair *key);
} // namespace eoskeygen
#endif /* EOSIOKEYGEN_WIF_H */
#endif /* EOSIOKEYGEN_CRYPTO_WIF_H */

View file

@ -21,8 +21,8 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef EOSIOKEYGEN_BASE58_H
#define EOSIOKEYGEN_BASE58_H
#ifndef EOSIOKEYGEN_CRYPTO_BASE58_H
#define EOSIOKEYGEN_CRYPTO_BASE58_H
#include <string>
#include <vector>
@ -35,4 +35,4 @@ std::string base58_encode(const unsigned char* pbegin, const unsigned char* pend
} //namespace eoskeygen
#endif /* EOSIOKEYGEN_BASE58_H */
#endif /* EOSIOKEYGEN_CRYPTO_BASE58_H */

View file

@ -21,13 +21,13 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef EOSIOKEYGEN_CHECKSUM_H
#define EOSIOKEYGEN_CHECKSUM_H
#ifndef EOSIOKEYGEN_CRYPTO_EOS_CHECKSUM_H
#define EOSIOKEYGEN_CRYPTO_EOS_CHECKSUM_H
#include <cstddef>
#include <cstring>
#include <array>
#include "crypto/hash.h"
#include "hash.h"
namespace eoskeygen {

View file

@ -23,7 +23,7 @@
*/
#include <iostream>
#include "core/dictionary.h"
#include "WIF.h"
#include "crypto/WIF.h"
#include "console.h"
#include "key_search_helpers.h"

View file

@ -24,7 +24,7 @@
#ifndef EOSIOKEYGEN_KEY_SEARCH_HELPERS_H
#define EOSIOKEYGEN_KEY_SEARCH_HELPERS_H
#include "string.h"
#include "core/string.h"
#include "crypto/types.h"
namespace eoskeygen {

View file

@ -26,13 +26,13 @@
#endif /* HAVE_THREADS */
#include <iostream>
#include <cstring>
#include "console.h"
#include "config.h"
#include "core/file.h"
#include "core/dictionary.h"
#include "string.h"
#include "WIF.h"
#include "core/string.h"
#include "crypto/ec.h"
#include "crypto/WIF.h"
#include "console.h"
#include "key_search.h"
#include "benchmark.h"