String plaintext = "adminsecret";
String ciphertext = "CIj2qAUHmLHvrlRXsW9Z2dfsGm0=";
assertStructure(ciphertext);
String decrypted = passwords.decrypt(ciphertext);
assertEquals(plaintext, decrypted);
}
private void assertStructure(String ciphertext) throws IOException {