Coders Packet

Packets submitted by Sankalp Verma

XOR Encryption in C++

A simple encryption method made in c++. This project takes a key and plaintext from the user and encrypts the plaintext by performing characterwise XOR on plaintext with key.

Bank Identification Number Checker in C++

Bank Identification Number(BIN) checker using C++. The purpose of this program is to check if the given Bank Identification Number(BIN) is legitimate or not.

Vigenere Cipher in C++

Vigenere cipher is one of the most popularly used alphabetic cipher. This program implements Vigenere cipher in C++.