vote up 0 vote down star

The Windows API function CryptBinaryToString isn't supported on Windows 2000.

Is there and alternative?

The main use that I need, is to encode/decode BASE64

flag

45% accept rate

2 Answers

vote up 1 vote down check

If you want BASE64, you can find some very short implementation like b64.c. If you need more cryptocipher/certificate related stuff, try get openssl for win32.

link|flag
Indeed, it is for BASE64 – Daniel Silveira Apr 30 at 18:13
vote up -1 vote down

You could roll your own from the MSDN description.

link|flag
Any reason this is downvoted? Just take a look at the function description. – dirkgently Apr 30 at 18:12
Not the one to downvote you, but I don't see any useful information in the MSDN description either - what do you want to say? There's no any alternative information. – Francis Apr 30 at 18:29
I gave you an upvote, MSDN describes what each flag does and most of them are very straightforward - alternate implementations are readily available or easy to roll your own. – Michael Apr 30 at 18:35
That's exactly what I meant -- this is a rather easy function to implement safely unlike some of the other components of the Crypto API. – dirkgently Apr 30 at 18:41

Your Answer

Get an OpenID
or

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