Welcome to 3vidence
Here we will cover how to get started using 3vidence.
Overview
Creating anti-tampering evidence, improving integrity. Using 3vidence, developers are able to proof their users that time sensitive static data has not been modified by anyone, not even by their self.
3vidence is a solution that closes the gap (integrity and existence) between data at rest and data in use by developing a hybrid digital signature from lessons learned (as well as inspiration) of JWS, Wireguard, PGP, TOR, safecurves, Telegram, Signal, RFC 3161 and Blockchain timestamping. 3vidence uses hybrid-mode with pre-quantum and post-quantum signature schemes (ed25519 and dilithium) to create the next generation trusted timestamps with long term support and privacy. We empower apps with hybrid trusted timestamping protocol technology on application layer.
Getting started
Prerequisites pyhton3
pip-3 install click requests Install 3vidence CLI
mkdir -p .local/bin
cd .local
git clone https://github.com/liesware/3vidence_cli
ln -s ~/.local/3vidence_cli/0545.py ~/.local/bin/0545
export PATH=$PATH:~/.local/bin/On file ~/.local/3vidence_cli/vars.py modify the variable fileConf (absolute path), for example: fileConf = '/home/$USER/.local/3vidence_cli/.3vidence.json'
Creating your account
Go to api.3vidence.com/signup

Save the json at $YOUR_DIR/3vidence_cli/.3vidence.json
echo '{ "email": "[email protected]", "password": "BECD2D13E7815A915CC3ED9ED364E8285FA1853E3AE5B777A624D779C426784F" }' > ~/.local/3vidence_cli/.3vidence.jsonWhen you create your account, check your mail to verify your account (please check on spam). You will be asked for the verification code on cli.

$ ./0545.py auth signupLogin
Let's login on your account
./0545.py auth loginInit

To init your account, check your email to verify your subject. You will be asked for the verification code and your branch (YOUR_BRANCH_NAME) name on cli.
$ ./0545.py htsp initSign a file
Now you have your account, let's sign some files.
$ ./0545.py htsp sign YOUR_BRANCH_NAME YOUR_FILEVerify a file
Let's verify your file
$ ./0545.py htsp verify YOUR_FILEAccount info
In this option de cli displays your account info.
$ ./0545.py htsp infoApi key info
in this option de cli displays your api key info.
$ ./0545.py htsp info-key YOUR_BRANCH_NAMELast updated
Was this helpful?