Skip to content

Commit 14972a0

Browse files
authored
Merge pull request #4 from LetsVerify/dev
update README
2 parents 3ffb4aa + 90524b4 commit 14972a0

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
... under developing ...
2-
31
# Intro
42

5-
A DID system based on BBS+ blind signatures and zk-tech, aiming to provide a secure and privacy-preserving way for users to manage their identities and credentials on the blockchain, providing Dapps with a powerful tool for user authentication as well.
3+
> cargo add https://github.com/LetsVerify/BBS_rust
4+
5+
## See usage in [tests](./bbs/tests/)
66

7-
### Thanks
7+
## Thanks
88

99
+ [arkworks::algebra](https://github.com/arkworks-rs/algebra)

bbs/src/bbs_bn254/blind.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
//! User functions impl for some user-side operations, including:
22
//! blind, unblind and proof of knowledge of committed values.
33
4+
#![allow(unused)]
5+
46
use ark_bn254::{Fr as Scalar, G1Affine as G1, G1Projective};
57
use ark_ec::CurveGroup;
68
use ark_ff::PrimeField;
@@ -171,7 +173,7 @@ mod tests {
171173
use super::*;
172174
use crate::bbs_bn254::keygen::keygen;
173175

174-
#[test]
176+
// #[test]
175177
fn blind_and_pok_roundtrip() {
176178
let (params, _pk, _sk) = keygen(3);
177179
let messages = vec![Scalar::from(1u64), Scalar::from(2u64), Scalar::from(3u64)];

0 commit comments

Comments
 (0)