GlideEncrypter API will be deprecated after Vancouver release, please suggest some Alternatives ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2023 02:03 AM
As GlideEncrypter API will be deprecated after Vancouver release, we are looking for a long term solution to encrypt/decrypt data over web service. Please suggest
How can we achieve Key/token based encryption between ServiceNow and other tools ?I.e. any alternative approach ServiceNow can suggest to encrypt data over a web service and send it to third party tool and upon receiving data can we decrypt on the same way.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2023 02:25 AM
Hello @Dev Bisht
you can refer this -
var gc = global.GlideCryptoModule.getModule('global.acme_mod');
var value = 'test';
var encrypted = gc.encryptData(value);
gs.info('Encrypted: ' + encrypted);
gs.info('value: ' + value);
And refer this docs -
Mark ✅ Correct if this solves your issue and also mark 👍 Helpful if you find my response worthy based on the impact.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2023 02:57 AM
did you check docs for the alternative?
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader