This document summarizes the implementation of a somewhat homomorphic encryption technique. It describes modifying an existing somewhat homomorphic encryption scheme to enable addition, subtraction, and multiplication of integers. The key changes include replacing the modulo 2 operation in decryption with modulo X, where X is the maximum value for supported computations. AES encryption is used to securely transmit the homomorphically encrypted data between a client and server, which perform operations on the encrypted integers and return the encrypted result to the client for decryption. Several challenges arose during implementation related to the data types and block sizes supported by AES encryption.