CryptoPP::ed25519::Verifier shows different result from libsignal
问题 I'm trying to implement curve25519 verification with CryptoPP. I tried the libsignal library first, witch shows correct result. Then I tried the same data with CryptoPP, but shows wrong result. Here is the code using libsignal to verify a signature: string pub = str2hex("0504f05568cc7a16fa9b4bc1c9d9294a80b7727e349365f855031a180bf0f80910"); ec_public_key* pub_key; curve_decode_point(&pub_key, (uint8_t*)pub.data(), pub.size(), 0); string message = str2hex(