This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*******************************************************************************************************/ | |
// PRINCESS - Metamorphic Cipher (64bit WORDS, 18 Rounds, 1024bit key, 512bit block), based on RC5 | |
/*******************************************************************************************************/ | |
// Written for fun, dedicated to girlfriend named Princess, who I love dearly. -Estella Mystagic | |
// Requries 64bit platform | |
// gcc -O2 princess_v1.c -o princess | |
/*******************************************************************************************************/ | |
#include <stdio.h> | |
#include <time.h> | |
/*******************************************************************************************************/ |