up vote 0 down vote favorite
share [g+] share [fb]

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

link|improve this question

45% accept rate
feedback

2 Answers

up vote 2 down vote accepted

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|improve this answer
Indeed, it is for BASE64 – Daniel Silveira Apr 30 '09 at 18:13
feedback

You could roll your own from the MSDN description.

link|improve this answer
Any reason this is downvoted? Just take a look at the function description. – dirkgently Apr 30 '09 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 '09 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 '09 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 '09 at 18:41
feedback

Your Answer

 
or
required, but never shown

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