예제 #1
0
파일: ecgroup.py 프로젝트: FinalF/charm
 def random(self, _type=ZR):
     if _type == ZR or _type == G:
         return random(self.group, _type)
     return None
예제 #2
0
파일: ecgroup.py 프로젝트: SRI-CSL/ENCODERS
 def random(self, _type=ZR):
     """selects a random element in ZR or G"""        
     if _type == ZR or _type == G:
         return random(self.ec_group, _type)
     return None
예제 #3
0
 def random(self, _type=ZR):
     """selects a random element in ZR or G"""
     if _type == ZR or _type == G:
         return random(self.ec_group, _type)
     return None
예제 #4
0
 def random(self, _type=ZR):
     if _type == ZR or _type == G:
         return random(self.group, _type)
     return None