I see in secp256k1/include/secp256k1.h
- The signature must consist of a 32-byte big endian R value, followed by a
- 32-byte big endian S value. If R or S fall outside of [0..order-1], the
- encoding is invalid. R and S with value 0 are allowed in the encoding.
I take it this means that if I generate a signature in a secp256k1_pubkey I can look in the first 32 bytes to find R and the next 32 bytes to find S.
…but how can I find ‘v’ ?
Thanks.