@stacks/encryption
Encryption functions used by Stacks.js packages.
Installation
npm install @stacks/encryption
Encrypt and decrypt string
import { encryptECIES, decryptECIES } from '@stacks/encryption';
import { Buffer } from '@stacks/common';
const privateKey = 'a5c61c6ca7b3e7e55edee68566aeab22e4da26baa285c7bd10e8d2218aa3b229';
const publicKey = '027d28f9951ce46538951e3697c62588a87f1f1f295de4a14fdd4c780fc52cfe69';
const testString = 'all work and no play makes jack a dull boy';
const cipherObj = await encryptECIES(publicKey, Buffer.from(testString), true);
const deciphered = await decryptECIES(privateKey, cipherObj)
console.log(deciphered);
Sign content using ECDSA
import { signECDSA, verifyECDSA } from '@stacks/encryption';
const privateKey = 'a5c61c6ca7b3e7e55edee68566aeab22e4da26baa285c7bd10e8d2218aa3b229';
const testString = 'all work and no play makes jack a dull boy'
const sigObj = await signECDSA(privateKey, testString)
const result = await verifyECDSA(testString, sigObj.publicKey, sigObj.signature);
console.log(result);
EncryptMnemonic and decryptMnemonic
import { encryptMnemonic, decryptMnemonic } from '@stacks/encryption';
import { Buffer } from '@stacks/common';
const rawPhrase = 'march eager husband pilot waste rely exclude taste '
+ 'twist donkey actress scene';
const rawPassword = 'rawPassword';
const mockSalt = Buffer.from('ff'.repeat(16), 'hex')
const encoded = await encryptMnemonic(rawPhrase, rawPassword, { getRandomBytes: () => mockSalt });
const decoded = await decryptMnemonic(encoded.toString('hex'), rawPassword);
console.log(decoded);
Make EC PrivateKey
import { makeECPrivateKey, publicKeyToAddress } from '@stacks/encryption';
import { SECP256K1Client } from 'jsontokens';
const privateKey = makeECPrivateKey();
const publicKey = SECP256K1Client.derivePublicKey(privateKey);
const address = publicKeyToAddress(publicKey);
console.log(address);
EC pair to hex string
import {
ecPairToAddress,
ecPairToHexString,
hexStringToECPair,
} from '@stacks/encryption';
const privateKey = '00cdce6b5f87d38f2a830cae0da82162e1b487f07c5affa8130f01fe1a2a25fb01';
const expectedAddress = '1WykMawQRnLh7SWmmoRL4qTDNCgAsVRF1';
const computedECPair = hexStringToECPair(privateKey);
const exToHex = ecPairToHexString(computedECPair);
const address = ecPairToAddress(computedECPair);
console.log(exToHex);
console.log(address === expectedAddress);