Skip to content
This repository has been archived by the owner on Sep 17, 2020. It is now read-only.

Commit

Permalink
v1.0.15
Browse files Browse the repository at this point in the history
* More native Chacha20Poly1305 implementation
  • Loading branch information
stickpin committed Jan 21, 2020
1 parent 3c33edc commit 3114fd5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/bin/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const credentials_1 = require("../lib/credentials");
const scan_1 = require("./scan");
const pair_1 = require("./pair");
cli
.version('1.0.14')
.version('1.0.15')
.command('pair', 'Pair with an Apple TV')
.option('--timeout <timeout>', 'The amount of time (in seconds) to scan for Apple TVs', cli.INTEGER)
.action((args, options, logger) => {
Expand Down
2 changes: 1 addition & 1 deletion dist/lib/util/encryption.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"use strict";
const chacha = require("chacha-native");
const chacha = require("chacha-js");
const chacha20poly1305 = require("./chacha20poly1305");
const crypto = require("crypto");
const number_1 = require("./number");
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-appletv-x",
"version": "1.0.14",
"version": "1.0.15",
"description": "A Node.js library for communicating with an Apple TV",
"homepage": "https://github.com/stickpin/node-appletv-x",
"bugs": "https://github.com/stickpin/node-appletv-x/issues",
Expand All @@ -27,7 +27,7 @@
"dependencies": {
"camelcase": "^5.3.1",
"caporal": "^1.3.0",
"chacha-native": "^2.0.3",
"chacha-js": "^2.1.1",
"curve25519-n": "^1.5.0",
"ed25519-wasm-pro": "^1.1.1",
"fast-srp-hap": "^1.0.1",
Expand Down

0 comments on commit 3114fd5

Please sign in to comment.