예제 #1
0
파일: ecgroup.py 프로젝트: FinalF/charm
 def coordinates(self, point):
     if type(point) == elliptic_curve:
         return getXY(self.group, point, True)
예제 #2
0
 def coordinates(self, point):
     """get the X and Y coordinates of an EC point"""
     if type(point) == ec_element:
         return getXY(self.ec_group, point, True)
예제 #3
0
파일: ecgroup.py 프로젝트: FinalF/charm
 def zr(self, point):
     if type(point) == elliptic_curve:
         return getXY(self.group, point, False)
     return None
예제 #4
0
 def zr(self, point):
     """get the X coordinate only"""
     if type(point) == ec_element:
         return getXY(self.ec_group, point, False)
     return None
예제 #5
0
파일: ecgroup.py 프로젝트: SRI-CSL/ENCODERS
 def coordinates(self, point):
     """get the X and Y coordinates of an EC point"""
     if type(point) == ec_element:
         return getXY(self.ec_group, point, True)
예제 #6
0
파일: ecgroup.py 프로젝트: SRI-CSL/ENCODERS
 def zr(self, point):
     """get the X coordinate only"""
     if type(point) == ec_element:
         return getXY(self.ec_group, point, False)
     return None
예제 #7
0
 def coordinates(self, point):
     if type(point) == elliptic_curve:
         return getXY(self.group, point, True)
예제 #8
0
 def zr(self, point):
     if type(point) == elliptic_curve:
         return getXY(self.group, point, False)
     return None