mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-30 11:29:35 -05:00
- Remove case fallthrough from deprecate-rsa-1024 code.
This commit is contained in:
parent
59ea44322e
commit
e217bb48ad
2 changed files with 2 additions and 0 deletions
|
|
@ -1,6 +1,7 @@
|
|||
7 May 2021: Wouter
|
||||
- Fix #485: Unbound occasionally reports broken stats.
|
||||
- Add ./configure --with-deprecate-rsa-1024 that turns off RSA 1024.
|
||||
- Remove case fallthrough from deprecate-rsa-1024 code.
|
||||
|
||||
4 May 2021: George
|
||||
- Fix for #367: only attempt to get the interface for queries that are no
|
||||
|
|
|
|||
|
|
@ -409,6 +409,7 @@ int dnskey_size_is_supported(struct ub_packed_rrset_key* dnskey_rrset,
|
|||
/* reject RSA keys of 1024 bits and shorter */
|
||||
if(keysize <= 1024)
|
||||
return 0;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue