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
<?php | |
//I want to use set of characters that are easy to spell out -> 123456789ABCDEFGHIJKLMNPRSTUVZ | |
class PseudoCrypt { | |
/* Key: Next prime greater than 62 ^ n / 1.618033988749894848 */ | |
/* Value: modular multiplicative inverse */ | |
/* | |