package com.mobify.astro.security;

interface SymmetricCryptosystem {
    String encrypt(String keyToAssociate, String valueToEncrypt) throws Exception;
    String decrypt(String keyToAssociate, String valueToDecrypt) throws Exception;
}