
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
multisafe-sdk
Advanced tools
Welcome to the MultiSafe Auth SDK Repo.
This package includes all the methods to interact with ipfs gateway via end to end encryption.
const auth = require("auth-sdk");
let data = "Hello World";
await auth.ipfs.addData(data);
const auth = require("auth-sdk");
let cid = "QmPb5f92FxKPYdT3QNBd1GKiL4tZUXUrzF4Hkpdr3Gf1gK";
await auth.ipfs.getData(cid);
const auth = require("auth-sdk");
let signature = <Get signature from ethereum private key by signing a message>
auth.cryptoUtils.encryptData("some data",signature, safeAddress);
const auth = require("auth-sdk");
let signature = <Get signature from ethereum private key by signing a message>
auth.cryptoUtils.decryptData(<Encrypted String>,signature, safeAddress);
const auth = require("auth-sdk");
let signature = <Get signature from ethereum private key by signing a message>
auth.cryptoUtils.encryptDataUsingEncryptionKey("some data",encryptionKey);
const auth = require("auth-sdk");
let signature = <Get signature from ethereum private key by signing a message>
auth.cryptoUtils.decryptDataUsingEncryptionKey(<Encrypted String>, encryptionKey);
const auth = require("auth-sdk");
let signature = <Get signature from ethereum private key by signing a message>
auth.cryptoUtils.getEncryptionKey(signature, safeAddress);
const auth = require("auth-sdk");
let signature = <Get signature from ethereum private key by signing a message>
await auth.cryptoUtils.encryptUsingPublicKey(data, publicKey);
const auth = require("auth-sdk");
let signature = <Get signature from ethereum private key by signing a message>
await auth.cryptoUtils.encryptUsingSignatures(data, signature);
const auth = require("auth-sdk");
let signature = <Get signature from ethereum private key by signing a message>
await auth.cryptoUtils.decryptUsingSignatures(encryptedData, signature);
const auth = require("auth-sdk");
let signature = <Get signature from ethereum private key by signing a message>
auth.cryptoUtils.getPublicKey(signature);
FAQs
Welcome to the MultiSafe Auth SDK Repo.
We found that multisafe-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.