Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
sypher-util
Advanced tools
Strong Cipherer and Decipherer for text, objects, streams and buffers
yarn add sypher-util
const { cipher } = require('sypher')
const password = 'password'
const key = '01976eaa057ba336a9478ddc5bd9a5dd4ebbdb3256f97c7d2f1ca7fee3e0d0eb'
cipher(password, 'aes-256-cbc', key).then(({ content, iv }) => {
// Encrypted content is in `content`
// Generated IV is in `iv`
})
const { cipher } = require('cypher')
const { createReadStream } = require('fs')
const source = createReadStream('test.txt')
const key = '01976eaa057ba336a9478ddc5bd9a5dd4ebbdb3256f97c7d2f1ca7fee3e0d0eb'
cipher(source, 'aes-256-cbc', key).then(({ content, stream, iv }) => {
// Encrypted content is in `content`
// Piping stream is in `stream
// Generated IV is in `iv`
})
const { decipher } = require('sypher')
const key = '01976eaa057ba336a9478ddc5bd9a5dd4ebbdb3256f97c7d2f1ca7fee3e0d0eb'
const iv = Buffer.from('11bef69d2d16fbb1', 'hex')
const ciphered = '...'
decipher(ciphered, 'aes-256-cbc', key, iv).then(({ content }) => {
// Deciphered content is in `content`
})
const { decipher } = require('sypher')
const { createWriteStream } = require('fs')
const source = createReadStream('ciphered.txt')
const key = '01976eaa057ba336a9478ddc5bd9a5dd4ebbdb3256f97c7d2f1ca7fee3e0d0eb'
const iv = Buffer.from('11bef69d2d16fbb1', 'hex')
decipher(source, 'aes-256-cbc', key, iv).then(({ content, stream }) => {
// Encrypted content is in `content`
// Piping stream is in `stream`
})
This software is release under the GPL-3.0 license. Please see the LICENSE file for further information.
FAQs
Strong cipherer and decipherer
We found that sypher-util 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.