tweetnacl-util
String encoding utilitlies extracted from TweetNaCl.js
Last updated 6 years ago by dchest .
Unlicense · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install tweetnacl-util 
SYNC missed versions from official npm registry.

tweetnacl-util-js

String encoding utilities extracted from early versions of https://github.com/dchest/tweetnacl-js

Notice

Encoding/decoding functions in this package are correct, however their performance and wide compatibility with uncommon runtimes is not something that is considered important compared to the simplicity and size of implementation. For example, they don't work under React Native.

Instead of this package, I strongly recommend using my StableLib packages:

  • @stablelib/utf8 for UTF-8 encoding/decoding (note that the names of operations are reversed compared to this package): npm install @stablelib/utf8

  • @stablelib/base64 for constant-time Base64 encoding/decoding: npm install @stablelib/base64

Installation

Use a package manager:

Bower:

$ bower install tweetnacl-util

NPM:

$ npm install tweetnacl-util

or download source code.

Usage

To make keep backward compatibility with code that used nacl.util previously included with TweetNaCl.js, just include it as usual:

<script src="nacl.min.js"></script>
<script src="nacl-util.min.js"></script>
<script>
  // nacl.util functions are now available, e.g.:
  // nacl.util.decodeUTF8
</script>

When using CommonJS:

var nacl = require('tweetnacl');
nacl.util = require('tweetnacl-util');

Documentation

nacl.util.decodeUTF8(string)

Decodes string and returns Uint8Array of bytes.

nacl.util.encodeUTF8(array)

Encodes Uint8Array or Array of bytes into string.

nacl.util.decodeBase64(string)

Decodes Base-64 encoded string and returns Uint8Array of bytes.

nacl.util.encodeBase64(array)

Encodes Uint8Array or Array of bytes into string using Base-64 encoding.

Current Tags

  • 0.15.1                                ...           latest (6 years ago)

6 Versions

  • 0.15.1                                ...           6 years ago
  • 0.15.0                                ...           9 years ago
  • 0.14.0                                ...           9 years ago
  • 0.13.5                                ...           9 years ago
  • 0.13.4                                ...           9 years ago
  • 0.13.3                                ...           10 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (3)

Copyright 2013 - present © cnpmjs.org | Home |