The BCrypt class

The security.BCrypt class lets you save passwords as BCrypt results instead of clear text.

This class is provided in the security C-Extension library; To use this class, import the security package with:
IMPORT security

If you need to store passwords on a database for instance, you can save them as BCrypt results instead of clear text. This makes them difficult to hack, as the time to generate one is expensive.