Security News
UK Officials Consider Banning Ransomware Payments from Public Entities
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
@requestnetwork/epk-decryption
Advanced tools
Decryption provider using ethereum private keys.
Ethereum Private Key Decryption Provider.
@requestnetwork/epk-decryption
is a typescript library part of the Request Network protocol.
Implementation of the decryption provider from the private keys. The decryption provider is used to make decryption in the Request Network Protocol (e.g.: see Transaction Manager).
It uses the Request Network Protocol concept of Identity
described in the request logic specification.
npm install @requestnetwork/epk-decryption
import { EncryptionTypes, IdentityTypes } from '@requestnetwork/types'
import EthereumPrivateKeyDecryptionProvider from '@requestnetwork/epk-decryption'
const decryptionParametersExample: EncryptionTypes.IDecryptionParameters = {
key: '0xc87509a1c067bbde78beb793e6fa76530b6382a4c0241e5e4a9ec0a0f44dc0d3',
method: EncryptionTypes.METHOD.ECIES,
};
// Identity from the previous signature parameter
const identityExample: IdentityTypes.IIdentity = {
type: IdentityTypes.TYPE.ETHEREUM_ADDRESS,
value: '0x627306090abab3a6e1400e9345bc60c78a8bef57'
};
// Construct the provider with a
const decryptionProvider = new EthereumPrivateKeyDecryptionProvider(decryptionParametersExample);
// can list the identity usable
const listOfAvailableIdentity = decryptionProvider.getAllRegisteredIdentities(); // [identityExample]
// can decrypt data with identity
const dataToDecrypt = "02....";
const decryptedData = await decryptionProvider.decrypt(dataToDecrypt, identityExample); // "Decrypted data..."
// can add a new decryption parameters
decryptionProvider.addDecryptionParameters({method: EncryptionTypes.METHOD.ECIES, key: ...});
// can remove a decryption parameters from its identity
decryptionProvider.removeRegisteredIdentity({type: IdentityTypes.TYPE.ETHEREUM_ADDRESS, value: ...});
// can remove all decryption parameters
decryptionProvider.clearAllRegisteredIdentities();
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Read the contributing guide
FAQs
Decryption provider using ethereum private keys.
The npm package @requestnetwork/epk-decryption receives a total of 149 weekly downloads. As such, @requestnetwork/epk-decryption popularity was classified as not popular.
We found that @requestnetwork/epk-decryption demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.