Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 488 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 488 Bytes

AIAS Verifier

Verifies AIAS signature.

Usage

Accepts parameters in the following format.

The message can be multi-line, and can be raw bytes. The signature and GPK is base64 format string, that is generated by distributed-bbs-mobile.

Required parameters:

${SIGNATURE}
${GPK}
${MESSAGE}

To run, from command line:

cargo build --release
target/release/aias-verifier verify < parameter.txt

Exit code will be 0 if passed verification, and others if failed.