I have a question, being a student I have to use OpenSSL. My task is to calculate a RSA signature with blinding, and it uses both char
and unsigned char
. I said this in case anyone is wondering why I'm using these types, char
and unsigned char
, so intricately.
My question is what are the rules and good practice advice to using a cast from and to char
/ unsigned char
applied to itself without a pointer, to vector/pointers and, why not, to matrices.
If anymore details are needed I am happy to comply. It goes without saying that I have searched but couldn't find a satisfying answer to anything else than casting int and unsigned int, thus if this is a repost point me in the right direction without hesitation.