diff options
author | Nick Mathewson <nickm@torproject.org> | 2023-02-10 08:11:39 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2023-02-10 08:11:39 -0500 |
commit | 43d3a411575b0a07e313ef4715cd164e0a6a5f0f (patch) | |
tree | 2335b899f36c528a073c7de4879a942aa19fa77b /src/test | |
parent | a9c7cd6b2c08eed9bfd6dd3daa64a89083fd0b08 (diff) | |
download | tor-43d3a411575b0a07e313ef4715cd164e0a6a5f0f.tar.gz tor-43d3a411575b0a07e313ef4715cd164e0a6a5f0f.zip |
Extend blinding testvec with timeperiod test.
When I copied this to arti, I messed up and thought that the default
time period was 1440 seconds for some weird testing reason. That led
to confusion.
This commit adds a test case that time period 1440 is May 20, 1973:
now arti and c tor match!
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/test_hs_common.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/test/test_hs_common.c b/src/test/test_hs_common.c index 4b43a9eb0b..ea7c589be9 100644 --- a/src/test/test_hs_common.c +++ b/src/test/test_hs_common.c @@ -1527,8 +1527,14 @@ test_blinding_basics(void *arg) { (void)arg; char *mem_op_hex_tmp = NULL; - uint64_t time_period = 1234; + const uint64_t time_period = 1234; ed25519_keypair_t keypair; + + time_t instant; + tt_int_op(0, OP_EQ, parse_iso_time("1973-05-20 01:50:33", &instant)); + tt_int_op(1440, OP_EQ, get_time_period_length()); // in minutes, remember. + tt_int_op(time_period, OP_EQ, hs_get_time_period_num(instant)); + const char pubkey_hex[] = "833990B085C1A688C1D4C8B1F6B56AFAF5A2ECA674449E1D704F83765CCB7BC6"; const char seckey_hex[] = |