The task is used to encrypt a plain-text password. The result of the task can be specified for zOSImport, ZOSFetch, and zOSSTORE password attributes.

Attributes

The task supports Build Extensions Debugging Attributes and Build Extensions General Attributes, as well as, its own task specific attributes. Click on a link for more information on the common attributes.

The following table describes the task specific attributes for the task:

Task Specific Attributes
Attribute Description Required
password Plain-text password to encrypt. Yes

Notes

Examples

  1. Encrypt a password:
    <?xml version="1.0" encoding="UTF-8"?>
    <project name="zOSPassword" default="main" xmlns:es="antlib:com.ibm.team.enterprise.smpe.toolkit">
        
        <target name="main" description="main">
            <es:zOSPassword
                password="password"
            />
        </target>
        
    </project>