vote up 1 vote down star

Hi All,

I have been tasked with implementing TLS/SSL onto an in-house webserver framework. I was wondering if anyone could point me to some good example code that they know of?

I am particularly interested in using GSS API (Microsoft's Security Support Provider Interface (SSPI)). Failing that, Crypto++, I can't use any other type of open source library.

Many Thanks!

EDIT: To clarify: Crypto++ is the only open source library I can use. Not my restriction, but one I have to comply with.

EDIT2: Just to add, I am coding in C++

flag

Any other type? So, is OpenSSL no good? – Checkers Jan 12 '09 at 9:59

3 Answers

vote up 2 vote down

You honestly can't use OpenSSL? Is this a FIPS issue? If so, OpenSSL's FIPS 140-2 module 1.2 is available as of November of 2008.

UPDATE: If OpenSSL can't be used as a library, you can still read the source to learn. Depending on the strictness of your requirements, you may need to do this cleanroom-style.

UPDATE 2: Here's the latest (I think) TLS spec. Using this in conjunction with the OpenSSL source should help you figure out how to do the negotiation, etc. You can then use Crypto++ to perform the actual crypto you've negotiated. I'd still suggest trying to avoid implementing this by hand if you can possibly get OpenSSL OK'd. Without knowing why it was outlawed in the first place, I can't help you with that, though.

link|flag
vote up 0 vote down

I was hoping to use an off-the-shelf library or API (like the examples mentioned) rather than reverse engineer a whole library.

link|flag
You explicitly told us you can't use an off-the-shelf library, except Crypto++. Since that doesn't do SSL, (although it could probably be used to implement the actual crypto part), I don't see how a library helps you. Here's the TLS spec, btw: tools.ietf.org/html/rfc5246 – Hank Gay Jan 12 '09 at 10:54
Ok, so what about GSS SSPI ? Any ideas there? – Whyamistilltyping Jan 12 '09 at 11:03
Sorry - I haven't lived in MS-land in years. – Hank Gay Jan 12 '09 at 11:09
vote up 0 vote down

If you're exclusively on Windows, SSPI provides support for SSL as well as other security protocols. It essentially provides you with the tokens you need to send between client and server to establish the secure connection, and thereafter enables encryption of data. This article gives an overview, but you should refer to the MS docs.

Not sure if there is an equivalent for other platforms. There is GSSAPI, which is similar to SSPI, however I'm not aware of SSL implementations underneath that (usually it's used for access to Kerberos). Not saying they don't exist, I've just not come across them.

link|flag
Thanks, I have already seen this code snippet. It is mostly managed code (or C#), I was after C++. Should have mentioned that before. – Whyamistilltyping Jan 12 '09 at 13:53
The API and approach is similar regardless of the language binding. There are loads of SSPI examples out there to illustrate the C++ peculariaties of invoking the API. – frankodwyer Jan 12 '09 at 14:51
Well could you point me the direction of some? The bits I have seen thus far are either of a poor standard or are proof of concepts, nothing else. – Whyamistilltyping Jan 12 '09 at 16:27

Your Answer

Get an OpenID
or

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