I am trying to generate keys using libsoudium and printing them. Where are thees keys stored and how can I find them? This is what I am trying to do in C.
unsigned char pk[crypto_sign_PUBLICKEYBYTES];
unsigned char sk[crypto_sign_SECRETKEYBYTES];
int crypto_sign_keypair(unsigned char *pk, unsigned char *sk);
printf("%s", pk);
this outputs: H��H�. What does that mean?
the documentation is here for the functions I am trying to call. https://download.libsodium.org/doc/public-key_cryptography/public-key_signatures.html