Skip to content

Acktarius/conceal-core

This branch is 2 commits ahead of ConcealNetwork/conceal-core:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

c44924d · Jan 20, 2025
Feb 24, 2024
Aug 23, 2018
Feb 24, 2024
Sep 23, 2023
Apr 22, 2023
Jan 20, 2025
Apr 9, 2023
Aug 14, 2022
Feb 21, 2022
Feb 24, 2024
Apr 25, 2022
Feb 24, 2024
Jun 23, 2020
Jun 24, 2018
Jun 16, 2024
Jul 18, 2019
Jun 16, 2024
Feb 2, 2022
Dec 24, 2021

Repository files navigation

image

Conceal Core (CLI)

GitHub release (latest by date) Ubuntu 20.04 Ubuntu 22.04 Windows macOS

Maintained by Conceal Developers, overseen by Conceal Team and driven by Conceal Community.

What's Conceal Network?

Conceal Network is a peer-to-peer privacy-preserving network made for Private DeFi and Encrypted Communications. Conceal offers protocol-level private transactions, blockchain deposits, and on-chain encrypted messages. These unique functionalities make it effortless for everyday users to manage their finances and communicate securely and privately.

Conceal provides the ability for individuals to communicate and financially interact with each other in a totally anonymous manner. Two persons may exchange messages, conduct business, and transact funds without ever knowing the true name, or legal identity, of the other. Interactions over networks are untraceable, via cryptographic protocols with nearly perfect assurance against any tampering.

₡CCX mimics the properties of cash. Nobody knows how or where you spend your folding cash. You go to the ATM, take out money and you can buy an ice-cream or that pretty old chair at the neighborhood yard sale and there is no record of it anywhere, unlike with a credit card. These powerful privacy-preserving abilities will act as a critical bulwark against the inevitable rise of Panopticon digital money. They may be our only hope. The end of cash means the end of free choice. That’s where Conceal comes into the picture.

A lot of people say there is no killer app for crypto. They’re wrong. We’ve figured out how to mimic cash in an environment that is entirely focused on privacy: The biggest feature of cash is that it’s really hard to track. In other words, anonymity is the main feature of cash. Only the two parties that conducted business know it happened. Conceal (₡CCX) is the death of blockchain analysis. Conceal brings back the true anonymity of cash.

Conceal is open-source, community driven and truly decentralized. No one owns it, everyone can take part.

Resources

Compiling Conceal from source

System Memory

The build process can consume upto 13GB of memory and may fail if enough resources are not available. In some build scenarios it may be necessary to increase the size of the SWAP to compensate for less RAM.

For example if you have 8GB of RAM, then your SWAP size should be 5GB

  • Ubuntu / Debian
sudo fallocate -l 5G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
  • Rasberry Pi OS
sudo dphys-swapfile swapoff
sudo nano /etc/dphys-swapfile
CONF_SWAPSIZE=5120
sudo nano /sbin/dphys-swapfile
#CONF_MAXSWAP=2048
sudo dphys-swapfile setup
sudo dphys-swapfile swapon

Linux

Prerequisites

  • You will need the following dependencies to build the Conceal CLI: boost, cmake, git, gcc, g++, python, and make:
Ubuntu and Debian Based Systems
sudo apt update
sudo apt install -y build-essential python3-dev git cmake libboost-all-dev

Building

  • On Linux Systems:
git clone https://github.com/ConcealNetwork/conceal-core
cd conceal-core
mkdir build
cd build
cmake ..
make

If the build is successful the binaries will be in the src folder.

ARM / Raspberry Pi

Tested on a Raspberry Pi 4 with Raspberry Pi OS (32/64bit) images.

Other ARM CPU/OS combinations should be possible if the CPU supports Neon/AES.

  • Follow the Linux / Ubuntu procedure to build.

Windows 10

Prerequisites

  • Install Visual Studio 2019 Community Edition

    When installing Visual Studio, you need to install Desktop development with C++ and the MSVC v142 - VS 2019 C++ x64/x86 build tools components. The option to install the v142 build tools can be found by expanding the "Desktop development with C++" node on the right. You will need this for the project to build correctly.

  • Install CMake
  • Install Boost, ensuring you download the installer for MSVC 14.2.

    The instructions will be given for Boost 1.78.0. Using a different version should be supported but you will have to change the version where required.

Building

  • From the start menu, open 'x64 Native Tools Command Prompt for vs2019' or run "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\VsMSBuildCmd.bat" from any command prompt.
git clone https://github.com/ConcealNetwork/conceal-core
cd conceal-core
mkdir build
cd build
cmake .. -G "Visual Studio 16 2019" -A x64 -DBOOST_ROOT="c:\local\boost_1_78_0"
msbuild concealX.sln /p:Configuration=Release /m

If the build is successful the binaries will be in the src/Release folder.

macOS

Prerequisites

  • In order to install prerequisites, XCode and Homebrew needs to be installed. Once both are ready, open Terminal app and run the following command to install additional tools:
xcode-select --install
  • On newer macOS versions (v10.14 and higher) this step is done through Software Update in System Preferences.

  • After that, proceed with installing dependencies:

brew install git cmake boost

Building

  • When all dependencies are installed, build Conceal Core binaries:
git clone https://github.com/ConcealNetwork/conceal-core
cd conceal-core
mkdir build
cd build
cmake ..
make

If the build is successful the binaries will be located in the src folder.

Special Thanks

Special thanks goes out to the developers from Cryptonote, Bytecoin, Ryo, Monero, Forknote, TurtleCoin, Karbo and Masari.

Copyright (c) 2017-2024 Conceal Community, Conceal Network & Conceal Devs

About

Conceal Core (CLI)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 85.8%
  • C 13.5%
  • CMake 0.4%
  • Perl 0.2%
  • Shell 0.1%
  • Python 0.0%