...
All encryption is done through a core "encryption" service. The various points in the frameworks will call this central service for the actual encrypting/decrypting. Institutions wishing for different encryption algorithms can simply override the encryptionService
Spring bean. For example, say you want to turn off encryption for development purposes, you can just add the following to your override the appropriate Spring beans filefiles....
Code Block | ||||
---|---|---|---|---|
| ||||
<bean id="encryptionService" class="org.kuali.rice.core.service.impl.NoEncryptionEncryptionServiceImpl" /> |
...