Skip to content

Commit 0a6df49

Browse files
committed
Fix dsa-sha1 signature URLs.
1 parent 63d3165 commit 0a6df49

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/saml2/algsupport.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"rsa-sha256": 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha256',
2424
"rsa-sha384": 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha384',
2525
"rsa-sha512": 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha512',
26-
"dsa-sha1": 'http,//www.w3.org/2000/09/xmldsig#dsa-sha1',
26+
"dsa-sha1": 'http://www.w3.org/2000/09/xmldsig#dsa-sha1',
2727
'dsa-sha256': 'http://www.w3.org/2009/xmldsig11#dsa-sha256',
2828
'ecdsa_sha1': 'http://www.w3.org/2001/04/xmldsig-more#ECDSA_sha1',
2929
'ecdsa_sha224': 'http://www.w3.org/2001/04/xmldsig-more#ECDSA_sha224',

src/saml2/xmldsig/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
('DIGEST_RIPEMD160', DIGEST_RIPEMD160))
3030
DIGEST_AVAIL_ALG = DIGEST_ALLOWED_ALG + (('DIGEST_MD5', DIGEST_MD5),)
3131

32-
SIG_DSA_SHA1 = 'http,//www.w3.org/2000/09/xmldsig#dsa-sha1'
32+
SIG_DSA_SHA1 = 'http://www.w3.org/2000/09/xmldsig#dsa-sha1'
3333
SIG_DSA_SHA256 = 'http://www.w3.org/2009/xmldsig11#dsa-sha256'
3434
SIG_ECDSA_SHA1 = 'http://www.w3.org/2001/04/xmldsig-more#ECDSA_sha1'
3535
SIG_ECDSA_SHA224 = 'http://www.w3.org/2001/04/xmldsig-more#ECDSA_sha224'

0 commit comments

Comments
 (0)