public void setSaltSizeBytes(final String saltSizeBytes) {
if (saltSizeBytes != null) {
try {
this.saltSizeBytes = new Integer(saltSizeBytes);
} catch (NumberFormatException e) {
throw new EncryptionInitializationException(e);
}
} else {
this.saltSizeBytes = null;
}
}