secret-channel
TypeScript icon, indicating that this package has built-in type declarations

1.1.0 • Public • Published

secret-channel

npm version npm downloads ci status

Streaming authenticated encryption using ChaCha20-Poly1305 (RFC 8439) (or other AEAD constructions).

See project README.md for more information.

Install

npm install --save secret-channel

API

encrypter = createEncrypter(key)

[lengthCiphertext, contentCiphertext] = encrypter.next(plaintext)

endCiphertext = encrypter.end()

decrypter = createDecrypter(key)

lengthOrEnd = decrypter.lengthOrEnd(ciphertext)

lengthOrEnd is either:

{
  type: 'length',
  length // number
}

or

{
  type: 'end-of-stream',
}

content = decrypter.content(ciphertext)

KEY_SIZE

The size of a ChaCha20-Poly1305 key: 32 bytes

TAG_SIZE

The size of ChaCha20-Poly1305 authentication tag: 16 bytes.

The size of encrypted ciphertext is plaintext.length + TAG_SIZE.

The size of decrypted plaintext is ciphertext.length - TAG_SIZE.

LENGTH_OR_END_PLAINTEXT

2 bytes

LENGTH_OR_END_CIPHERTEXT

18 bytes (LENGTH_OR_END_PLAINTEXT + TAG_SIZE)

MAX_CONTENT_LENGTH

$2^{16} - 1$

Example

Encryption

const b4a = require('b4a')
const { createEncrypter, KEY_SIZE } = require('secret-channel')

// with a new secret key of size `KEY_SIZE`
const encrypter = createEncrypter(key)

const bufferList = []
bufferList.push(encrypter.next('hello'))
bufferList.push(encrypter.next('world'))
bufferList.push(encrypter.end())

const bytes = b4a.concat(bufferList)

// send bytes

Decryption

const { createDecrypter, KEY_SIZE, TAG_SIZE, LENGTH_OR_END_CIPHERTEXT } = require('secret-channel')

// const key = ...

const decrypter = createDecrypter(key)

// receive lengthOrEndBytes of size `LENGTH_OR_END_CIPHERTEXT`

const lengthOrEnd = decrypter.lengthOrEnd(lengthOrEndBytes)
if (lengthOrEnd.type === 'end-of-stream') {
  // end of stream
} else if (lengthOrEnd.type === 'length') {
  const length = lengthOrEnd.length

  // receive contentBytes of size `length + TAG_SIZE`

  const content = decrypter.content(contentBytes)
}

// and so on...

License

Copyright 2023 Michael Williams

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Package Sidebar

Install

npm i secret-channel

Weekly Downloads

3

Version

1.1.0

License

Apache-2.0

Unpacked Size

31.6 kB

Total Files

19

Last publish

Collaborators

  • ahdinosaur