@plugnet/util-crypto
Version:
A collection of useful crypto utilities for @plugnet
17 lines (15 loc) • 683 B
JavaScript
;
var _ = require(".");
// Copyright 2017-2019 @polkadot/util-crypto authors & contributors
// This software may be modified and distributed under the terms
// of the Apache-2.0 license. See the LICENSE file for details.
describe('naclEncrypt', () => {
it('encrypts a message', () => {
const secret = new Uint8Array(32);
const message = new Uint8Array([1, 2, 3, 4, 5, 4, 3, 2, 1]);
expect((0, _.naclEncrypt)(message, secret, new Uint8Array(24))).toEqual({
encrypted: new Uint8Array([94, 21, 20, 69, 68, 221, 140, 245, 200, 67, 77, 188, 129, 85, 227, 141, 199, 60, 184, 251, 251, 129, 205, 46, 234]),
nonce: new Uint8Array(24)
});
});
});