From a73692fd7f3b755f55088bc9ea88dc2c3ef4f666 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Thu, 15 Oct 2009 01:55:41 +0000 Subject: [PATCH] dont verify request hash in auth.check() --- sfa/trust/auth.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sfa/trust/auth.py b/sfa/trust/auth.py index 611a9bac..f15da147 100644 --- a/sfa/trust/auth.py +++ b/sfa/trust/auth.py @@ -45,6 +45,10 @@ class Auth: # make sure the client_gid is not blank if not self.client_gid: raise MissingCallerGID(self.client_cred.get_subject()) + + # validate the client cert if it exists + if peer_cert: + self.verifyPeerCert() # make sure the client is allowed to perform the operation if operation: -- 2.47.0