@Test
public void canEncryptText_usingStrongEncryptor() {
JuAssumeUtils.javaCryptographyExtensionInstalled();
JuTextEncryptor encryptor = JuSecurityUtils.buildEncryptor()
.strong()
.password("secret")
.createTextEncryptor();
String encryptedString = encryptor.encrypt("String"); // The encrypted String will not be constant...
Assert.assertNotNull(encryptor.encrypt("String"));
Assert.assertEquals("String", encryptor.decrypt(encryptedString));
}