Skip to content

adeherysh/libsodium-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

libsodium-api

Api tools for generate encrypted value for github secret with public key (with tweetsodium). This tool was created because I want to use tweetsodium in postman pre-script (but postman can only import predefined libraries)

Getting started

Usage:

Postman pre-script like this:

var apiUrl = 'https://csb-2x6tr.vercel.app/api';
var publicKey = 'public-key-here';
var secretValue = 'secret-value-here';

//get encrypted value
const setEncryptedValue = (secretValue, publicKey) => ({
  url: `${apiUrl}/encrypt`,
  method: 'POST',
  header: {
    'Accept': 'application/json',
    'Content-Type': 'application/json'
  },
  body: {
    mode: 'raw',
    raw: JSON.stringify({
      secret_value: secretValue,
      public_key: publicKey
    })
  }
});

pm.sendRequest(setEncryptedValue(secretValue, publicKey), function (err, res) {
  console.log('encrypted_value', res.json().data)
}

About

Api tools for generate encrypted value for github secret with public key (with tweetsodium)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published