NIH | National Cancer Institute | NCI Wiki  

Error rendering macro 'rw-search'

null

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Password Encryption

Encryption is the process of taking data (called cleartext) and a short string (a key), and producing data (ciphertext) meaningless to a third-party who does not know the key. Decryption is the inverse process: that of taking ciphertext and a short key string, and producing cleartext.
LexGrid utilizes the java security API for encryption and decryption of the database passwords. The Security API is a core API of the Java programming language, built around the java.security package (and its subpackages). This API is designed to allow developers to incorporate both low-level and high-level security functionality into their programs.
The Java Cryptography Architecture encompasses the parts of the Java 2 SDK Security API related to cryptography, as well as a set of conventions and specifications provided in this document. It includes a "provider" architecture that allows for multiple and interoperable cryptography implementations.
Encryption/Decryption implementation Details:

Creating a Cipher Object


Cipher cipher = Cipher.getInstance("PBEWithMD5AndDES");
"PBEWithMD5AndDES" is the widely used algorithm used for the encryption process. Other available algorithms are "PBEWithHmacSHA1AndDESede", "AES", "Blowfish", "DES", "DESede" etc.

Initializing a Cipher Object

cipher.init(<MODE>, <KEY>, <PBEParameterSpec>);
A Cipher object obtained via getInstance must be initialized for one of four modes, which are defined as final integer constants in the Cipher class. The modes can be referenced by their symbolic names, which are shown below along with a description of the purpose of each mode:

  • ENCRYPT_MODE: Encryption of data.
  • DECRYPT_MODE: Decryption of data.
  • WRAP_MODE: Wrapping a Key into bytes so that the key can be securely transported.
  • UNWRAP_MODE: Unwrapping of a previously wrapped key into a java.security.Key object.


Encrypting and Decrypting Data


cipherBytes = cipher.doFinal(<text to encrypt/decrypt>);
Passwords in lexEVS are encrypted /decrypted in one step (single-part operation)
By passing the text to encrypt/decrypt as a parameter.

!worddav62c958ed593c97060c1c460d14b42a62.emf|height=161,width=180!
Following are the steps to encrypt the password of lexEVS database.

1) Run PasswordEncryptor.sh or PasswordEncryptor.bat (pass password text as a parameter) from lbAdmin to generate the encrypted password.

  • Generated password will be stored in a file @ lbAdmin/password.txt
    2) Copy the encrypted password from password.txt and paste it in lbConfig.props file ( DB_PASSWORD=<Encrypted_Password> )
    3) Set the new lbConfig parameter DB_PASSWORD_ENCRYPTED=true (value case insensitive) .
  • Note : any value other than 'true' (or no value) for DB_PASSWORD_ENCRYPTED is considered as 'false'.
    4) When password encryption is off, use the password directly as you have been using till now.

  • No labels