Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
... under developing ...

# Intro

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.
> cargo add https://github.com/LetsVerify/BBS_rust

## See usage in [tests](./bbs/tests/)

### Thanks
## Thanks

+ [arkworks::algebra](https://github.com/arkworks-rs/algebra)
4 changes: 3 additions & 1 deletion bbs/src/bbs_bn254/blind.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
//! User functions impl for some user-side operations, including:
//! blind, unblind and proof of knowledge of committed values.

#![allow(unused)]

use ark_bn254::{Fr as Scalar, G1Affine as G1, G1Projective};
use ark_ec::CurveGroup;
use ark_ff::PrimeField;
Expand Down Expand Up @@ -171,7 +173,7 @@ mod tests {
use super::*;
use crate::bbs_bn254::keygen::keygen;

#[test]
// #[test]
fn blind_and_pok_roundtrip() {
let (params, _pk, _sk) = keygen(3);
let messages = vec![Scalar::from(1u64), Scalar::from(2u64), Scalar::from(3u64)];
Expand Down
Loading