This class can be used to encrypt and decrypt data with one time pad cipher algorithm implemented in pure PHP. The class has a single function that takes a password and a string of the data to encrypt. The password is used to create a cypher that encrypts the data using an XOR operation. The same function to encrypt can be used to decrypt the encrypted data using the same password.