mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-15 02:40:04 -04:00
Merged rt42505 (misc DNSSEC bugs)
This commit is contained in:
parent
c33e89b832
commit
07e35360e4
4 changed files with 8 additions and 1 deletions
|
|
@ -594,7 +594,7 @@
|
|||
</para>
|
||||
<para>
|
||||
Both <filename>.key</filename> and <filename>.private</filename>
|
||||
files are generated for symmetric encryption algorithms such as
|
||||
files are generated for symmetric cryptography algorithms such as
|
||||
HMAC-MD5, even though the public and private key are equivalent.
|
||||
</para>
|
||||
</refsection>
|
||||
|
|
|
|||
|
|
@ -47,6 +47,7 @@
|
|||
<LinkIncremental>false</LinkIncremental>
|
||||
<OutDir>..\..\..\Build\$(Configuration)\</OutDir>
|
||||
<IntDir>.\$(Configuration)\</IntDir>
|
||||
<TargetName>pkcs11-destroy</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|@PLATFORM@'">
|
||||
<ClCompile>
|
||||
|
|
|
|||
|
|
@ -47,6 +47,7 @@
|
|||
<LinkIncremental>false</LinkIncremental>
|
||||
<OutDir>..\..\..\Build\$(Configuration)\</OutDir>
|
||||
<IntDir>.\$(Configuration)\</IntDir>
|
||||
<TargetName>pkcs11-tokens</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|@PLATFORM@'">
|
||||
<ClCompile>
|
||||
|
|
|
|||
|
|
@ -1576,6 +1576,11 @@ issymmetric(const dst_key_t *key) {
|
|||
case DST_ALG_ECDSA384:
|
||||
return (ISC_FALSE);
|
||||
case DST_ALG_HMACMD5:
|
||||
case DST_ALG_HMACSHA1:
|
||||
case DST_ALG_HMACSHA224:
|
||||
case DST_ALG_HMACSHA256:
|
||||
case DST_ALG_HMACSHA384:
|
||||
case DST_ALG_HMACSHA512:
|
||||
case DST_ALG_GSSAPI:
|
||||
return (ISC_TRUE);
|
||||
default:
|
||||
|
|
|
|||
Loading…
Reference in a new issue