- Correct signature indexing error introduced in 1.0.0 that prevents
verification of multiple signatures in a single message
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
Version 1.1
|
||||||
|
- Correct signature indexing error introduced in 1.0.0 that prevents
|
||||||
|
verification of multiple signatures in a single message
|
||||||
|
|
||||||
2019-12-31 Version 1.0.2
|
2019-12-31 Version 1.0.2
|
||||||
- dknewkey: On posix operating systems set file permissions to 600 for
|
- dknewkey: On posix operating systems set file permissions to 600 for
|
||||||
ed25519 private key files (as is already done for RSA) (LP: #1857827)
|
ed25519 private key files (as is already done for RSA) (LP: #1857827)
|
||||||
|
|||||||
+1
-1
@@ -934,7 +934,7 @@ class DKIM(DomainSigner):
|
|||||||
#: @return: True if signature verifies or False otherwise
|
#: @return: True if signature verifies or False otherwise
|
||||||
#: @raise DKIMException: when the message, signature, or key are badly formed
|
#: @raise DKIMException: when the message, signature, or key are badly formed
|
||||||
def verify(self,idx=0,dnsfunc=get_txt):
|
def verify(self,idx=0,dnsfunc=get_txt):
|
||||||
sig, include_headers, sigheaders = self.verify_headerprep(idx=0)
|
sig, include_headers, sigheaders = self.verify_headerprep(idx)
|
||||||
return self.verify_sig(sig, include_headers, sigheaders[idx], dnsfunc)
|
return self.verify_sig(sig, include_headers, sigheaders[idx], dnsfunc)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user