fix: add missing definition of sha1

This commit is contained in:
ThomasV 2015-09-09 18:15:38 +02:00
parent 62643cbc18
commit ebd5a565ed
2 changed files with 6 additions and 0 deletions

View File

@ -128,6 +128,7 @@ class PaymentRequest:
try: try:
x, ca = verify_cert_chain(cert.certificate) x, ca = verify_cert_chain(cert.certificate)
except BaseException as e: except BaseException as e:
traceback.print_exc(file=sys.stderr)
self.error = str(e) self.error = str(e)
return False return False
# get requestor name # get requestor name

View File

@ -14,10 +14,15 @@ import os
import math import math
import base64 import base64
import binascii import binascii
import hashlib
from pem import * from pem import *
def SHA1(x):
return hashlib.sha1(x).digest()
# ************************************************************************** # **************************************************************************
# PRNG Functions # PRNG Functions
# ************************************************************************** # **************************************************************************