Delegation is now per-privilege, instead of one bit per credential
authorJosh Karlin <jkarlin@bbn.com>
Wed, 7 Apr 2010 21:19:15 +0000 (21:19 +0000)
committerJosh Karlin <jkarlin@bbn.com>
Wed, 7 Apr 2010 21:19:15 +0000 (21:19 +0000)
sfa/trust/credential.py

index d533b95..fa94692 100644 (file)
@@ -579,8 +579,8 @@ class Credential(object):
         os.remove(filename)
 
         # Verify the parents (delegation)
-        #if self.parent_xml:
-        #    self.verify_parent(Credential(string=self.parent_xml))
+        if self.parent_xml:
+            self.verify_parent(Credential(string=self.parent_xml))
 
         # Make sure the issuer is the target's authority
         self.verify_issuer()