1
vote
5answers
3k views

Simply encrypt a string in C

I'm trying to encrypt a query string on a game I'm making when opening a url. It doesn't have to be complicated, in fact since I'm working from a game engine it needs to be as simple as possible. It ...
1
vote
4answers
133 views

Server in C. How do i do it with query strings?

So, i am assuming that i will need to use sockets(i am a newbie to C). The program will be for Windows(in pure C). And i shall be using these examples ...
2
votes
3answers
1k views

C library for parsing query strings?

I'm writing a C/CGI web application. Is there a library to parse a query string into something like a GHashTable? I could write my own but it certainly doesn't seem to be worth the effort to reinvent ...