Convert the point to the :term:`raw encoding`.
(self)
| 104 | return verifying_keys |
| 105 | |
| 106 | def _raw_encode(self): |
| 107 | """Convert the point to the :term:`raw encoding`.""" |
| 108 | order = self.pubkey.order |
| 109 | x_str = number_to_string(self.pubkey.point.x(), order) |
| 110 | y_str = number_to_string(self.pubkey.point.y(), order) |
| 111 | return x_str + y_str |
| 112 | |
| 113 | def _compressed_encode(self): |
| 114 | """Encode the point into the compressed form.""" |
no test coverage detected