APPENDIX FWrapping PL/SQL Code Primer
Oracle 11g provides the capability to wrap or obfuscate your PL/SQL stored programs. Wrapping your code encapsulates the business logic of your applications from prying eyes by hiding the source code. It converts the clear text in the database to an unreadable stream of data. You can obfuscate the clear text by using the command line wrap utility or by calling the CREATE_WRAPPED procedure or WRAP function found in the DBMS_DDL package.
You should wrap only the implementation details. This means you should wrap only functions, procedures, package bodies, and type bodies. You enable developers to use your code by leaving the package specification and the type specification. They just won't know how it performs ...
Get Oracle Database 11g PL/SQL Programming now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.