diff --git a/bin/dnssec/dnssec-keygen.docbook b/bin/dnssec/dnssec-keygen.docbook
index 25708a7c52..d3923a0a78 100644
--- a/bin/dnssec/dnssec-keygen.docbook
+++ b/bin/dnssec/dnssec-keygen.docbook
@@ -594,7 +594,7 @@
Both .key and .private
- 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.
diff --git a/bin/pkcs11/win32/pk11destroy.vcxproj.in b/bin/pkcs11/win32/pk11destroy.vcxproj.in
index b23c6064da..c0dd3caf57 100644
--- a/bin/pkcs11/win32/pk11destroy.vcxproj.in
+++ b/bin/pkcs11/win32/pk11destroy.vcxproj.in
@@ -47,6 +47,7 @@
false
..\..\..\Build\$(Configuration)\
.\$(Configuration)\
+ pkcs11-destroy
diff --git a/bin/pkcs11/win32/pk11tokens.vcxproj.in b/bin/pkcs11/win32/pk11tokens.vcxproj.in
index 0491f221c4..b3810c2ec9 100644
--- a/bin/pkcs11/win32/pk11tokens.vcxproj.in
+++ b/bin/pkcs11/win32/pk11tokens.vcxproj.in
@@ -47,6 +47,7 @@
false
..\..\..\Build\$(Configuration)\
.\$(Configuration)\
+ pkcs11-tokens
diff --git a/lib/dns/dst_api.c b/lib/dns/dst_api.c
index 30e569e5b3..9d886f9bf8 100644
--- a/lib/dns/dst_api.c
+++ b/lib/dns/dst_api.c
@@ -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: