Re: sigbuf parameter of RSA_verify

2007-03-19 Thread James Walker
Nils Larsch wrote: James Walker wrote: I'm wondering why the sigbuf parameter of RSA_verify is declared as unsigned char* rather than const unsigned char*. It's not going to change the signature, is it? it should not change the signature input and in openssl >= 0.9.8 it is const. Thanks! -

Re: sigbuf parameter of RSA_verify

2007-03-18 Thread Nils Larsch
James Walker wrote: I'm wondering why the sigbuf parameter of RSA_verify is declared as unsigned char* rather than const unsigned char*. It's not going to change the signature, is it? it should not change the signature input and in openssl >= 0.9.8 it is const. Nils _