This commit is contained in:
John Doe 2024-07-06 11:18:33 -04:00
parent 23416a0793
commit 87a57fbe68

View file

@ -5,7 +5,7 @@ FTU is a command line frontend for fstoken, FemtoStar's implementation of its Cr
FTU and fstoken are under development, and should not expected to be secure or stable yet! They haven't been extensively tested or audited by anyone, they are not guaranteed to follow best practices for BLS or for security in general, and they almost certainly contain bugs! FTU also currently does very little to protect its secret keys on-disk or during usage (including printing them to the console!). fstoken is not currently a feature-complete implementation of the FemtoStar Credit Token system. There is no "stable" version! You have been warned!
To get started, run `get_dependencies.sh` - at present this just clones the blst Git repo, which ftu statically links. Then run `./build` to get
and `ftu` executable.
an `ftu` executable.
The FemtoStar Credit Token system is a Chaumian-style token system, based on BLS blind signatures. Tokens are issued for "targets", a generic term for an entity having a set of keys against which tokens can be issued and verified. In the FemtoStar Network's intended application, each satellite has its own corresponding token target, for which the network operator can issue, and the satellite can verify tokens. FTU can be used with arbitrary targets, including user-generated ones, and at present it does not include any "out of the box". You can create your own target named `mytarget` with `./ftu keygen mytarget`, interactively request a token for it with `./ftu ireq mytarget`, sign token requests for it with `./ftu sign mytarget [request]`, and verify tokens for it with `./ftu verify mytarget [token]`.