Documentation updates

This commit is contained in:
Scott Kitterman
2019-10-30 18:52:36 -04:00
parent 1f2597a666
commit 5487f798ac
2 changed files with 2 additions and 6 deletions
+1 -6
View File
@@ -144,12 +144,7 @@ code 1.
As of version 0.6.0, dkimpy provides experimental support for ARC (Authenticated As of version 0.6.0, dkimpy provides experimental support for ARC (Authenticated
Received Chain): Received Chain):
https://tools.ietf.org/html/draft-ietf-dmarc-arc-protocol-23 https://tools.ietf.org/html/rfc8617
This new functionality is marked experimental because the protocol is still
under development. There are no guarantees about API stability or
compatibility. Since the draft is through IETF last call, further changes are
unlikely.
In addition to arcsign and arcverify, the dkim module now provides In addition to arcsign and arcverify, the dkim module now provides
arc_sign and arc_verify functions as well as an ARC class. arc_sign and arc_verify functions as well as an ARC class.
+1
View File
@@ -477,6 +477,7 @@ class DomainSigner(object):
#: @param signature_algorithm: the signing algorithm to use when signing #: @param signature_algorithm: the signing algorithm to use when signing
#: @param debug_content: log headers and body after canonicalization (default False) #: @param debug_content: log headers and body after canonicalization (default False)
#: @param linesep: use this line seperator for folding the headers #: @param linesep: use this line seperator for folding the headers
#: @param timeout: number of seconds for DNS lookup timeout (default = 5)
def __init__(self,message=None,logger=None,signature_algorithm=b'rsa-sha256', def __init__(self,message=None,logger=None,signature_algorithm=b'rsa-sha256',
minkey=1024, linesep=b'\r\n', debug_content=False, timeout=5): minkey=1024, linesep=b'\r\n', debug_content=False, timeout=5):
self.set_message(message) self.set_message(message)