> For the complete documentation index, see [llms.txt](https://help.connected.illumina.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.connected.illumina.com/clarity-lims/clarity-lims-v6.3-and-lablink-v2.5/administration/creating-enrypted-passwords.md).

# Creating Enrypted Passwords

Saving passwords in encrypted format is recommended. Use the **omxprops** to do this action.

#### To encrypt a password:

Use the following command:

```
# java -jar /opt/gls/clarity/tools/propertytool/omxprops-ConfigTool.jar encryptPassword <password>
```

This command returns a text string resembling the following example:

```
RqHL5XpY0NStVRjd+BngRQ==  
```

#### To set an encrypted password:

Set the password by enclosing the text string in the **ENC()** wrapper.

Consider the following examples:

* When setting an encrypted password in a configuration file:\\

  ```
  rabbitmq.password=ENC(RqHL5XpY0NStVRjd+BngRQ==)
  ```
* When using the property tool to set an encrypted password:\\

  ```
  # java -jar /opt/gls/clarity/tools/propertytool/omxprops-ConfigTool.jar set -y ftp.password 'ENC(RqHL5XpY0NStVRjd+BngRQ==)'
   
  ```
* Using ENC() is not needed when setting the password in Automation Worker:\\

  ```
  informaticsClientTarget.sftpPassword=RqHL5XpY0NStVRjd+BngRQ==
  ```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.connected.illumina.com/clarity-lims/clarity-lims-v6.3-and-lablink-v2.5/administration/creating-enrypted-passwords.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
