Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I want to encrypt an unsigned char *, for that I must build a secureArray with this unsigned char *
how can I do?
You can try:
@ unsigned char * uCharArray; QCA::SecureArray::SecureArray secArray( static_cast<const char *>(uCharArray) ); @
But double check whether the conversion from unsigned to signed char does any harm!
Thanks Volker. I will test that next week. I am on leave