package com.mobify.astro.security;

interface AsymmetricCryptosystem {
    void init() throws Exception;
    boolean isInitialized() throws Exception;
    void clear() throws Exception;
    String encrypt(String valueToEncrypt) throws Exception;
    String decrypt(String valueToDecrypt) throws Exception;
}
