00:07:22 Yes 09:26:02 I have a crypto::key_image, but I need to get it into a ge_p2 instead of a ge_p3. What is the proper way to do this? 09:26:28 (using ge_frombytes_vartime) 09:27:27 SO instead of ge_p3 tmp3; hash_to_ec(*pubs[i], tmp3); ge_scalarmult(&tmp2, &k, &tmp3); 09:30:32 I need a conversion from key_image into ge_p2 so I can use ge_tobytes(buffer, &) 09:35:52 Should I just use ge_p3_to_p2?