OpenPGP.js for Postman

A Postman Runtime compatible OpenPGP.js

View on GitHub

Installation

To install on postman, create GET request with URL:

https://maasdi.github.io/openpgpjs-for-postman/dist/openpgp.min.js
And then add to postman Test script
pm.test("status code should be 200", function () {
	pm.response.to.have.status(200)
	pm.globals.set("openpgp", responseBody)
});
Next.. when you want to use it:
eval(pm.globals.get("openpgp"));

Sample

Download Sample Postman Collection or refer to example

Issue

Do you have issue while using this plugin? Please report here

License

Licensed under GNU Lesser General Public License (3.0 or any later version).