Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
@cogitojs/cogito-encryption
Advanced tools
Enables end-to-end encryption between users without having to worry about key management. Encryption keys are stored in the Cogito mobile app on the users' phones. The private keys never leave the user's phone.
Add @cogitojs/cogito-encryption
as a dependency:
$ yarn add cogitojs/cogito-encryption
The example below shows how to use telepath and Cogito Encryption to create a new public/private keypair.
import { Telepath } from '@cogitojs/telepath-js'
import { CogitoKeyProvider } from '@cogitojs/cogito-encryption'
const telepath = new Telepath('https://telepath.cogito.mobi')
const telepathChannel = await telepath.createChannel({ appName: 'Tutorial' })
const keyProvider = new CogitoKeyProvider({ telepathChannel })
const tag = await cogitoKeyProvider.createNewKeyPair()
Each keypair has a unique identifier called a tag. Once a keypair has been created, you can retrieve the public key and use it to encrypt some data:
import { CogitoEncryption } from '@cogitojs/telepath-js'
const publicKey = await cogitoKeyProvider.getPublicKey({ tag })
const encryption = new CogitoEncryption({ telepathChannel })
const cipherText = await encryption.encrypt({
jsonWebKey: publicKey,
plainText: 'a secret'
})
You can request decryption by the Cogito mobile app. Note that it is not possible to retrieve the private key. Decryption can only happen by the Cogito mobile app after the user has consented.
const plainText = await encryption.decrypt({ tag, encryptionData: cipherText })
FAQs
Supports encryption and decryption through the Cogito app
We found that @cogitojs/cogito-encryption demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.