vote up 0 vote down star

I need to encryption several pieces of text in a file along side unencrypted text in the same file. All the data is Unicode text.

In all the encryption libraries I have looked at Crypto++ Botan Etc... None of them "appear" to provide Unicode aware methods for encrypting / decrypting data E.G. data can be passed in/out using char, string instead of wchar wstring. Does this matter? Just looking for some guidance.

flag

65% accept rate

2 Answers

vote up 8 vote down check

Encryption libraries will use your data as a binary blob, not as characters. So it doesn't matter in what encoding the data is.

Encoding only affects interpretation of the data, not the data itself.

In other words: It doesn't matter

link|flag
vote up 1 vote down

Encryption works at byte level. It always requires binary blob as an input. So It does not matter in which encoding you are using to interpret data.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.