Tag Archives: C/C++

Howto base64 decode with C/C++ and OpenSSL

Someone asked for an example of decoding with OpenSSL on the Howto base64 encode with C/C++ and OpenSSL post. So here it is: Tags: C, C++, OpenSSL
Posted in programming | Also tagged , | 8 Comments

Using strptime to parse ISO 8601 formated timestamps

A lot of dates that come back from XML based web services are in the ISO 8601 form. I found out recently that it isn't straight forward to parse such a date using C functions and have the time come out in the correct timezone. It isn't rocket science but it is a lot more [...]
Posted in programming | Tagged | 2 Comments

Howto base64 encode with C/C++ and OpenSSL

I've been doing a little C programming lately and I have found that if you have a up to date distribution of linux there are a lot of libraries out there that make doing things you do in other languages like java easier.
Posted in programming | Also tagged , | 11 Comments