secret-handshake
Advanced tools
Comparing version 1.1.11 to 1.1.12
@@ -163,3 +163,3 @@ 'use strict' | ||
var sig = state.remote.hello.slice(0, 64) | ||
var publicKey = state.remote.hello.slice(64, exports.client_auth_length) | ||
var publicKey = state.remote.hello.slice(64, 96) | ||
@@ -166,0 +166,0 @@ var signed = concat([state.app_key, state.local.publicKey, state.shash]) |
{ | ||
"name": "secret-handshake", | ||
"description": "a simple and highly private secure-channel protocol", | ||
"version": "1.1.11", | ||
"version": "1.1.12", | ||
"homepage": "https://github.com/dominictarr/secret-handshake", | ||
@@ -6,0 +6,0 @@ "repository": { |
@@ -12,2 +12,4 @@ # secret-handshake | ||
* go [cryptix/secretstream](https://github.com/cryptix/secretstream/) | ||
* rust [AljoschaMeyer/secret-handshake-rs](https://github.com/AljoschaMeyer/secret-handshake-rs) | ||
* c [AljoschaMeyer/shs1-c](https://github.com/AljoschaMeyer/shs1-c) (actually just implements the crypto, not the protocol used as a component in the rust implementation) | ||
* python/twisted [david415/txsecrethandshake](https://github.com/david415/txsecrethandshake) (WIP) | ||
@@ -138,1 +140,3 @@ * C++ [Kodest/cppshs](https://github.com/Kodest/cppshs) (WIP) | ||
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
32679
141