Encryption and decryption

0
Hi Reader,   I want to implement hashing in mendix. How can I integrate SHA256 encryption and decryption with Mendix? Thanks and Regards, Harshraj Singh
asked
3 answers
3

Harshraj,Download the community commons module from the mendix market place you can use it there are already defined Java actions available.

answered
1
  1. Hashing is not encryption
  2. You cannot ‘decrypt’ a SHA256 hash
answered
0

Hi Harshraj,

 

The Mendix CommunityCommons module has this functionality see:

GenerateHMAC_SHA256_hash - Generates a base64 encoded asymmetric hash using the HMAC_SHA256 hash algorithm.

GenerateHMAC_SHA256 - Generates a hexadecimal encoded asymmetric hash using the HMAC_SHA256 hash algorithm.

 

The module will provide java actions that will encrypt your string.

answered