PubKey return the public key.
()
| 154 | |
| 155 | // PubKey return the public key. |
| 156 | func (private *PrivateKey) PubKey() *PublicKey { |
| 157 | return (*PublicKey)((*ec.PrivateKey)(private).PubKey()) |
| 158 | } |
| 159 | |
| 160 | // paddedAppend appends the src byte slice to dst, returning the new slice. If the length of the |
| 161 | // source is smaller than the passed size, leading zero bytes are appended to the dst slice before |
no outgoing calls