if (encrypter == null)
throw new NullPointerException("encrypter == null");
if (passwordSource == null)
throw new NullPointerException("passwordSource == null");
this.securityEncrypter = new SourcedByteEncrypter(encrypter, passwordSource);
return(this);
}