Skip to content

Commit f84a2ae

Browse files
committed
all tests pass
1 parent a5fccb2 commit f84a2ae

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

rust/diffie-hellman/tests/diffie-hellman.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ const PRIVATE_KEY_64BIT: u64 = 0xFFFF_FFFF_FFFF_FFC3;
7474
const PUBLIC_KEY_64BIT: u64 = 0xB851_EB85_1EB8_51C1;
7575

7676
#[test]
77-
#[ignore]
7877
#[cfg(feature = "big-primes")]
7978
fn public_key_correct_biggest_numbers() {
8079
assert_eq!(
@@ -84,7 +83,6 @@ fn public_key_correct_biggest_numbers() {
8483
}
8584

8685
#[test]
87-
#[ignore]
8886
#[cfg(feature = "big-primes")]
8987
fn secret_key_correct_biggest_numbers() {
9088
let private_key_b = 0xEFFF_FFFF_FFFF_FFC0;
@@ -105,7 +103,6 @@ fn secret_key_correct_biggest_numbers() {
105103
}
106104

107105
#[test]
108-
#[ignore]
109106
#[cfg(feature = "big-primes")]
110107
fn changed_secret_key_biggest_numbers() {
111108
let private_key_a = private_key(PRIME_64BIT_1);
@@ -121,7 +118,6 @@ fn changed_secret_key_biggest_numbers() {
121118
}
122119

123120
#[test]
124-
#[ignore]
125121
fn changed_secret_key() {
126122
let p: u64 = 13;
127123
let g: u64 = 11;

0 commit comments

Comments
 (0)