Encryption of Password2 gives error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2022 05:26 AM
I have subflow which should generate temporary password using Microsoft Azure Active Directory spoke.
After pass generation I would like to encrypt it and send it via email, whos password will be reset next.
when using enccryption script:
var Encrypter = new GlideEncrypter();
var encrypted = fd_data._1__generate_random_password.password
var decryptedValue = Encrypter.decrypt(encrypted);
return decryptedValue;
in log I see this error:
Access Denied to cryptographic module 'sn_azure_ad_spoke.glide_encrypter' |
How to fix it?
or how to send new password via email to user? (his personal email)??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2022 05:26 AM
Sorry I want tp decrypt.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2022 08:13 AM