mirror of
https://github.com/arnaucube/ring-signatures-rs.git
synced 2026-01-12 00:41:36 +01:00
Add GHA
This commit is contained in:
13
.github/workflows/test.yml
vendored
Normal file
13
.github/workflows/test.yml
vendored
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
name: Test
|
||||||
|
on: [push, pull_request]
|
||||||
|
env:
|
||||||
|
CARGO_TERM_COLOR: always
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Build
|
||||||
|
run: cargo build --verbose
|
||||||
|
- name: Run tests
|
||||||
|
run: cargo test --verbose
|
||||||
@@ -1,4 +1,7 @@
|
|||||||
# ring-signatures
|
# ring-signatures-rs [](https://github.com/arnaucube/ring-signatures-rs/actions?query=workflow%3ATest)
|
||||||
bLSAG (Back’s Linkable Spontaneous Anonymous Group signatures) implementation done to get familiar with [arkworks](https://arkworks.rs) & bLSAG.
|
|
||||||
|
bLSAG (Back’s Linkable Spontaneous Anonymous Group signatures) implementation done to get familiar with [arkworks](https://arkworks.rs) & [bLSAG](https://web.getmonero.org/library/Zero-to-Monero-2-0-0.pdf).
|
||||||
|
|
||||||
|
A Sage implementation can be found at: [github.com/arnaucube/math/ring-signatures.sage](https://github.com/arnaucube/math/blob/master/ring-signatures.sage)
|
||||||
|
|
||||||
> Warning: do not use this code in production.
|
> Warning: do not use this code in production.
|
||||||
|
|||||||
Reference in New Issue
Block a user