import { Encryption } from 'shielded-high-encryption';

const she = new Encryption();
const key = she.generateKey();
const iv = she.generateIv();
const plaintext = "Hello, World!";
const encryptedText = she.encrypt(plaintext, key, iv);
console.log(`Encrypted Text: ${encryptedText}`);
const decryptedText = she.decrypt(encryptedText, key, iv);
console.log(`Decrypted Text: ${decryptedText}`);