You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: rust/catalyst-voting/src/crypto/group/mod.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
//! Group definitions used in voting protocol.
2
-
//! For more information, see: <https://input-output-hk.github.io/catalyst-voices/architecture/08_concepts/voting_transaction/crypto/#a-group-definition>
2
+
//! For more information, see: <https://input-output-hk.github.io/catalyst-libs/architecture/08_concepts/catalyst_voting/crypto/#a-group-definition>
Copy file name to clipboardExpand all lines: rust/catalyst-voting/src/crypto/zk_unit_vector/mod.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
//! Zhang, Oliynykov and Balogum in
3
3
//! [`A Treasury System for Cryptocurrencies: Enabling Better Collaborative Intelligence`](https://www.ndss-symposium.org/wp-content/uploads/2019/02/ndss2019_02A-2_Zhang_paper.pdf).
4
4
//!
5
-
//! This implementation follows this [specification](https://input-output-hk.github.io/catalyst-voices/architecture/08_concepts/voting_transaction/crypto/#d-non-interactive-zk-vote-proof)
5
+
//! This implementation follows this [specification](https://input-output-hk.github.io/catalyst-libs/architecture/08_concepts/catalyst_voting/crypto/#d-non-interactive-zk-vote-proof)
Copy file name to clipboardExpand all lines: rust/catalyst-voting/src/crypto/zk_unit_vector/polynomial.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ impl Polynomial {
39
39
}
40
40
}
41
41
42
-
/// Generate the polynomial according to the step 7 of this [spec](https://input-output-hk.github.io/catalyst-voices/architecture/08_concepts/voting_transaction/crypto/#prover)
42
+
/// Generate the polynomial according to the step 7 of this [spec](https://input-output-hk.github.io/catalyst-libs/architecture/08_concepts/catalyst_voting/crypto/#prover)
Copy file name to clipboardExpand all lines: rust/catalyst-voting/src/txs/v1/mod.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
//! A Jörmungandr transaction object structured following this [spec](https://input-output-hk.github.io/catalyst-voices/architecture/08_concepts/voting_transaction/transaction/#v1-jormungandr)
1
+
//! A Jörmungandr transaction object structured following this [spec](https://input-output-hk.github.io/catalyst-libs/architecture/08_concepts/catalyst_voting/transaction/#v1-jormungandr)
Copy file name to clipboardExpand all lines: rust/catalyst-voting/src/vote_protocol/mod.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
//! An implementation of the voting protocol described in this [spec](https://input-output-hk.github.io/catalyst-voices/architecture/08_concepts/voting_transaction/crypto/)
1
+
//! An implementation of the voting protocol described in this [spec](https://input-output-hk.github.io/catalyst-libs/architecture/08_concepts/catalyst_voting/crypto/)
Copy file name to clipboardExpand all lines: rust/catalyst-voting/src/vote_protocol/tally/mod.rs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ impl DecryptionTallySetup {
47
47
}
48
48
49
49
/// Tally function.
50
-
/// More detailed described [here](https://input-output-hk.github.io/catalyst-voices/architecture/08_concepts/voting_transaction/crypto/#homomorphic-tally)
50
+
/// More detailed described [here](https://input-output-hk.github.io/catalyst-libs/architecture/08_concepts/catalyst_voting/crypto/#homomorphic-tally)
51
51
///
52
52
/// # Errors
53
53
/// - Votes and voting power length mismatch.
@@ -86,7 +86,7 @@ pub fn tally(
86
86
}
87
87
88
88
/// Decrypts the encrypted tally result.
89
-
/// More detailed described [here](https://input-output-hk.github.io/catalyst-voices/architecture/08_concepts/voting_transaction/crypto/#tally-decryption)
89
+
/// More detailed described [here](https://input-output-hk.github.io/catalyst-libs/architecture/08_concepts/catalyst_voting/crypto/#tally-decryption)
90
90
///
91
91
/// # Errors
92
92
/// - Cannot decrypt tally result. Provided an invalid secret key or invalid encrypted
Copy file name to clipboardExpand all lines: rust/catalyst-voting/src/vote_protocol/voter/mod.rs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ impl EncryptedVote {
50
50
51
51
implVote{
52
52
/// Generate a vote.
53
-
/// More detailed described [here](https://input-output-hk.github.io/catalyst-voices/architecture/08_concepts/voting_transaction/crypto/#voting-choice)
53
+
/// More detailed described [here](https://input-output-hk.github.io/catalyst-libs/architecture/08_concepts/catalyst_voting/crypto/#voting-choice)
54
54
///
55
55
/// # Errors
56
56
/// - Invalid voting choice, the value of `choice`, should be less than the number
@@ -85,7 +85,7 @@ impl Vote {
85
85
}
86
86
87
87
/// Create a new encrypted vote from the given vote and public key with with the
88
-
/// `crypto::default_rng`. More detailed described [here](https://input-output-hk.github.io/catalyst-voices/architecture/08_concepts/voting_transaction/crypto/#vote-encryption)
88
+
/// `crypto::default_rng`. More detailed described [here](https://input-output-hk.github.io/catalyst-libs/architecture/08_concepts/catalyst_voting/crypto/#vote-encryption)
/// Create a new encrypted vote from the given vote and public key.
109
-
/// More detailed described [here](https://input-output-hk.github.io/catalyst-voices/architecture/08_concepts/voting_transaction/crypto/#vote-encryption)
109
+
/// More detailed described [here](https://input-output-hk.github.io/catalyst-libs/architecture/08_concepts/catalyst_voting/crypto/#vote-encryption)
0 commit comments