This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
from lxml.objectify import parse | |
import urllib2 | |
request = urllib2.Request | |
urlopen = urllib2.urlopen | |
xpath_ns = {'ds': 'http://www.w3.org/2000/09/xmldsig#', | |
'md': 'urn:oasis:names:tc:SAML:2.0:metadata', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl -w | |
use strict; | |
use warnings; | |
use Carp; | |
use MIME::Base64; | |
use Compress::Zlib; | |
use URI; | |
use URI::QueryParam; | |
use XML::Canonical; |
NewerOlder