summaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
authorMaxim Biro <nurupo.contributions@gmail.com>2020-03-23 20:28:19 -0400
committerMaxim Biro <nurupo.contributions@gmail.com>2020-04-04 16:38:28 -0400
commit40dd88596eda0eea5df67e747e93baf65cab2cbf (patch)
treea7cc328aafeaa9b43068e5d7d6fd094919e2c2c6 /INSTALL.md
parent4b73607b6f1bbe858000c0665b5eeb7e1d60e7cf (diff)
Add minimal save generator
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md16
1 files changed, 9 insertions, 7 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 0e4d19b5..a6a75c02 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -45,13 +45,15 @@ This repository, although called `toxcore`, in fact contains several libraries b
45 45
46There are some programs that are not plugged into the CMake build system which you might find interesting. You would need to build those programs yourself. These programs reside in [`other/fun`](other/fun) directory. 46There are some programs that are not plugged into the CMake build system which you might find interesting. You would need to build those programs yourself. These programs reside in [`other/fun`](other/fun) directory.
47 47
48| Name | Type | Dependencies | Platform | Description | 48| Name | Type | Dependencies | Platform | Description |
49|-----------------------|------------|----------------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 49|--------------------------|------------|----------------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
50| `bootstrap_node_info` | Script | python3 | Cross-platform | Script for getting version and Message Of The Day (MOTD) information from a DHT bootstrap node. | 50| `bootstrap_node_info` | Script | python3 | Cross-platform | Prints version and Message Of The Day (MOTD) information of a specified DHT bootstrap node. |
51| `cracker` | Executable | libnacl or libsodium | Cross-platform | Tries to find a curve25519 key pair, hex representation of the public key of which starts with the specified byte sequence. | 51| `cracker` | Executable | libnacl or libsodium | Cross-platform | Tries to find a curve25519 key pair, hex representation of the public key of which starts with a specified byte sequence. |
52| `strkey` | Executable | libsodium | Cross-platform | Tries to find a curve25519 key pair, hex representation of the public key of which contains a specified byte pattern at the specified position or at any position. | 52| `make-funny-savefile` | Script | python | Cross-platform | Generates a Tox profile file (savedata file) with the provided key pair. Useful for generating Tox profiles from the output of cracker or strkey programs. |
53| `make-funny-savefile` | Script | python | Cross-platform | Generates Tox profile file (savedata file) with provided key pair. Useful for generating Tox profiles from the output of cracker or strkey programs. | 53| `minimal-save-generator` | Executable | libsodium | Cross-platform | Generates a minimal Tox profile file (savedata file) with a random key pair. |
54| `sign` | Executable | libsodium | Cross-platform | Program for ed25519 file signing. | 54| `save-generator` | Executable | libtoxcore | Cross-platform | Generates a Tox profile file (savedata file) with a random key pair using libtoxcore. Allows setting a name and adding friends. |
55| `sign` | Executable | libsodium | Cross-platform | Signs a file with a ed25519 key. |
56| `strkey` | Executable | libsodium | Cross-platform | Tries to find a curve25519 key pair, hex representation of the public key of which contains a specified byte pattern at a specified position or at any position. |
55 57
56## Building 58## Building
57 59