We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9a6fcd commit aa37499Copy full SHA for aa37499
1 file changed
src/xmlsec/test/p11_test.py
@@ -239,16 +239,6 @@ def teardown(self):
239
self.p11_test_files = []
240
241
242
-def _get_all_signatures(t):
243
- res = []
244
- for sig in t.findall(".//{%s}Signature" % xmlsec.NS['ds']):
245
- sv = sig.findtext(".//{%s}SignatureValue" % xmlsec.NS['ds'])
246
- assert sv is not None
247
- # base64-dance to normalize newlines
248
- res.append(base64.encodestring(base64.decodestring(sv)))
249
- return res
250
-
251
252
class TestPKCS11(unittest.TestCase):
253
def setUp(self):
254
datadir = pkg_resources.resource_filename(__name__, 'data')
0 commit comments