Common interface for all Password Based Encryptors which receive a byte array message and return a byte array result.
For a default implementation, see {@link StandardPBEByteEncryptor}.
361362363364365366367368369370371
if (this.useEncryptorName) { HibernatePBEEncryptorRegistry registry = HibernatePBEEncryptorRegistry.getInstance(); PBEByteEncryptor pbeEncryptor = registry.getPBEByteEncryptor(this.encryptorName); if (pbeEncryptor == null) { throw new EncryptionInitializationException( "No big integer encryptor registered for hibernate " + "with name \"" + this.encryptorName + "\"");