• Categories
  • Tag Archives: Encryption

    debian

    Debian RAID 5 + Encryption

    This is a little summary about what I did to create an encrypted RAID 5 device on my file server. First of all I had to install mdadm and cryptsetup. apt-get install mdadm cryptsetup The next step is to create … Continue reading

    Posted in Server | Tagged , , , | Leave a comment
    python

    Caesar Cipher in Python

    I just wrote a simple encryption application using the caesar cipher. I wrote the same in C++ a while ago but this version is, in my opinion,  much better coded. I decided to stop learning C++ and learn Python instead. … Continue reading

    Posted in Programming | Tagged , , , | 1 Comment

    My first C++ Application

    I finally finished my first C++ console application. (Except hello world) I made it using Eclipse IDE. It’s an encryption program which let’s you encrypt or decrypt text using the simple caesar cypher. You can get the source code here: … Continue reading

    Posted in Programming | Tagged , , | Leave a comment