The AES
class provides methods to extract the numerical value out of any currency representation by normalizing the input and removing any locale specific rules like symbols and use of commas.
import { AES } from "@payvo/cryptography";
AES.encrypt("message", "password");
AES.decrypt(AES.encrypt("message", "password"), "password");