Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Code Block
xml
xml
    <bean id="stringEncryptionService" class="org.jasig.portal.security.JasyptPBEStringEncryptionServiceImpl">
        <property name="stringEncryptor">
            <bean class="org.jasypt.encryption.pbe.StandardPBEStringEncryptor">

                                <!-- Before using the string encryption service you must
                    first set a password -->
                <property name="password" value="changeme"/>
               

                <!-- 
                    Example BouncyCastle-powered AES encryption
            

                           To use AES encryption, uncomment the following section, add
                    the unrestricted JCE provider files to your JVM, and add 
                    the JVM-version-appropriate BouncyCastle dependency to uPortal
                -->
                <!--
                <property name="algorithm" value="PBEWITHSHA256AND128BITAES-CBC-BC"/>
                <property name="provider">
                    <bean class="org.bouncycastle.jce.provider.BouncyCastleProvider"/>
                </property>
                -->
            </bean>
        </property>
    </bean>

...

Some instructions for installing CAS Clearpass are documented in the CAS manual ClearPassClearPass Integration - Maven Overlay.