Need help on KEYUTIL

May I know why I got this error?
“ReferenceError: KEYUTIL is not defined”

Based on my finding, how can I import jsrsasign.js into POSTMAN and use KEYUTIL function?

I have the same issue here! …
still no solution here? or response at least?

Not sure if this would be still needed but there we go:

  1. You need to download the external library jsrsasign-js and set it as a global or environment variable
    GET http://kjur.github.io/jsrsasign/jsrsasign-latest-all-min.js
    and in scripts/tests section add:
    pm.globals.set('jsrsasign-js', responseBody);
  2. In your request, before using KEYUTIL in the pre-request script, you need to load the library using:
    eval(pm.globals.get("jsrsasign-js"));

I hope this helps someone, I guess after a year this has been solved though.