Category Archives: Security

Caesar Cipher in C

A simple C implementation of the Caesar Cipher. Supports full wrap around for Alpha Numerics. Does Modulus for shifts larger than 26 for Alphas and 10 for Digits. Background on Caesar Cipher: https://en.wikipedia.org/wiki/Caesar_cipher

Posted in Computer Fun Stuff, Development, Programming General, Security, Technology | Leave a comment

Lightweight User Reference Object for Securing APIs

Back in 2005, I was face with developing a Secure Set of APIs that could run in multiple deployment configurations. At the time we were heavily developing EJB’s, specifically Stateless Session Beans. We were also starting to deploy SOAP based … Continue reading

Posted in Architecture, Development, Security | Leave a comment