Skip to content

Commit

Permalink
Expiration then inception in rrsig
Browse files Browse the repository at this point in the history
  • Loading branch information
achow101 committed May 4, 2024
1 parent 9367d28 commit 3e54656
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1331,8 +1331,8 @@ fn dns_thread(
for rrsig in soa_auth_recs_sign
.sign::<Signature, &DnsSigningKey, Name<Vec<u8>>>(
&apex_name,
incep_ts,
exp_ts,
incep_ts,
key.unwrap(),
)
.unwrap()
Expand Down Expand Up @@ -1394,8 +1394,8 @@ fn dns_thread(
for rrsig in nsec_auth_recs_sign
.sign::<Signature, &DnsSigningKey, Name<Vec<u8>>>(
&apex_name,
incep_ts,
exp_ts,
incep_ts,
key.unwrap(),
)
.unwrap()
Expand Down Expand Up @@ -1698,8 +1698,8 @@ fn dns_thread(
for rrsig in soa_ans_recs_sign
.sign::<Signature, &DnsSigningKey, Name<Vec<u8>>>(
&apex_name,
incep_ts,
exp_ts,
incep_ts,
key.unwrap(),
)
.unwrap()
Expand All @@ -1709,8 +1709,8 @@ fn dns_thread(
for rrsig in a_ans_recs_sign
.sign::<Signature, &DnsSigningKey, Name<Vec<u8>>>(
&apex_name,
incep_ts,
exp_ts,
incep_ts,
key.unwrap(),
)
.unwrap()
Expand All @@ -1720,8 +1720,8 @@ fn dns_thread(
for rrsig in aaaa_ans_recs_sign
.sign::<Signature, &DnsSigningKey, Name<Vec<u8>>>(
&apex_name,
incep_ts,
exp_ts,
incep_ts,
key.unwrap(),
)
.unwrap()
Expand All @@ -1731,8 +1731,8 @@ fn dns_thread(
for rrsig in ns_ans_recs_sign
.sign::<Signature, &DnsSigningKey, Name<Vec<u8>>>(
&apex_name,
incep_ts,
exp_ts,
incep_ts,
key.unwrap(),
)
.unwrap()
Expand All @@ -1750,8 +1750,8 @@ fn dns_thread(
for rrsig in dnskey_ans_recs_sign
.sign::<Signature, &DnsSigningKey, Name<Vec<u8>>>(
&apex_name,
incep_ts,
exp_ts,
incep_ts,
key.unwrap(),
)
.unwrap()
Expand Down Expand Up @@ -1798,8 +1798,8 @@ fn dns_thread(
for rrsig in soa_auth_recs_sign
.sign::<Signature, &DnsSigningKey, Name<Vec<u8>>>(
&apex_name,
incep_ts,
exp_ts,
incep_ts,
key.unwrap(),
)
.unwrap()
Expand Down

0 comments on commit 3e54656

Please sign in to comment.