Update man/dknewkey.1 to mention use of k= with RSA and bump version for release.

This commit is contained in:
Scott Kitterman
2018-02-17 13:52:13 -05:00
parent f6e9587857
commit b1adfa3e33
4 changed files with 7 additions and 5 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ signing and verification.
VERSION
This is dkimpy 0.7.0.
This is dkimpy 0.7.1.
REQUIREMENTS
+4 -2
View File
@@ -135,7 +135,7 @@ dknewkey
Generates new DKIM public/private key pairs
.SH "VERSION"
.IX Header "VERSION"
0\.7\.0
0\.7\.1
.SH "DESCRIPTION"
.IX Header "DESCRIPTION"
@@ -148,7 +148,9 @@ BITS_REQUIRED variable. ed25519 keys do not have a variable size.
For RSA keys, it uses openssl to do the generation. By default it assumes
this is located at /usr/bin/openssl. This is controlled by the OPENSSL_BINARY
variable. For ed25519 keys, PyNaCl (python-nacl in Debian and derivatives) is
used.
used. For RSA keys k=2ha256 is now included in the public DNS record to
prevent inadvertent use with the now obsolete sha1 hash algorithm (See RFC
8301).
.SH "USAGE"
.IX Header "USAGE"
+1 -1
View File
@@ -3,7 +3,7 @@
Summary: Python DKIM library
Name: %{pythonbase}-pydkim
Version: 0.7
Version: 0.7.1
Release: 1
Source0: http://hewgill.com/pydkim/pydkim-%{version}.tar.bz2
Patch: pydkim.patch
+1 -1
View File
@@ -24,7 +24,7 @@
from distutils.core import setup
import os
version = "0.7.0+"
version = "0.7.1"
setup(
name = "dkimpy",