Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WasmThemis: Secure Message support #490

Merged
merged 3 commits into from
Jul 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/wrappers/themis/wasm/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@
Object.assign(module.exports
, require('./secure_cell.js')
, require('./secure_keygen.js')
, require('./secure_message.js')
, require('./themis_error.js')
)
327 changes: 327 additions & 0 deletions src/wrappers/themis/wasm/src/secure_message.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,327 @@
// Copyright (c) 2019 Cossack Labs Limited
//
// 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.

/**
* @file
* Themis Secure Message.
*/

const libthemis = require('./libthemis.js')
const keygen = require('./secure_keygen.js')
const errors = require('./themis_error.js')
const utils = require('./utils.js')

const cryptosystem_name = 'SecureMessage'

const ThemisError = errors.ThemisError
const ThemisErrorCode = errors.ThemisErrorCode

class SecureMessage {
constructor(keyPair) {
if (arguments.length == 1) {
if (!(keyPair instanceof keygen.KeyPair)) {
throw new ThemisError(cryptosystem_name, ThemisErrorCode.INVALID_PARAMETER,
'invalid argument: must be KeyPair')
}
this.privateKey = keyPair.privateKey
this.publicKey = keyPair.publicKey
return
}

if (arguments.length == 2) {
let arg0isPrivateKey = arguments[0] instanceof keygen.PrivateKey
let arg0isPublicKey = arguments[0] instanceof keygen.PublicKey
let arg1isPrivateKey = arguments[1] instanceof keygen.PrivateKey
let arg1isPublicKey = arguments[1] instanceof keygen.PublicKey

if (arg0isPublicKey && arg1isPrivateKey) {
this.publicKey = arguments[0]
this.privateKey = arguments[1]
return
}
if (arg0isPrivateKey && arg1isPublicKey) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it's so cute) you allow users to use any order of params))

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that's really cool, i hope it will improve usability, not add confusion :D

this.privateKey = arguments[0]
this.publicKey = arguments[1]
return
}

throw new ThemisError(cryptosystem_name, ThemisErrorCode.INVALID_PARAMETER,
'invalid arguments: expected PrivateKey and PublicKey')
}

throw new ThemisError(cryptosystem_name, ThemisErrorCode.INVALID_PARAMETER,
'invalid argument count: expected either one KeyPair, or PrivateKey and PublicKey')
}

encrypt(message) {
message = utils.coerceToBytes(message)
if (message.length == 0) {
throw new ThemisError(cryptosystem_name, ThemisErrorCode.INVALID_PARAMETER,
'message must be not empty')
}

let status
/// C API uses "size_t" for lengths, it's defined as "i32" in Emscripten
let result_length_ptr = libthemis.allocate(4, 'i32', libthemis.ALLOC_STACK)
let private_key_ptr, public_key_ptr, message_ptr, result_ptr, result_length
try {
private_key_ptr = libthemis._malloc(this.privateKey.length)
public_key_ptr = libthemis._malloc(this.publicKey.length)
message_ptr = libthemis._malloc(message.length)
if (!private_key_ptr || !public_key_ptr || !message_ptr) {
throw new ThemisError(cryptosystem_name, ThemisErrorCode.NO_MEMORY)
}

libthemis.writeArrayToMemory(this.privateKey, private_key_ptr)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

clean up in case of error (this case and similar)

libthemis.writeArrayToMemory(this.publicKey, public_key_ptr)
libthemis.writeArrayToMemory(message, message_ptr)

status = libthemis._themis_secure_message_encrypt(
private_key_ptr, this.privateKey.length,
public_key_ptr, this.publicKey.length,
message_ptr, message.length,
null, result_length_ptr
)
if (status != ThemisErrorCode.BUFFER_TOO_SMALL) {
throw new ThemisError(cryptosystem_name, status)
}

result_length = libthemis.getValue(result_length_ptr, 'i32')
result_ptr = libthemis._malloc(result_length)
if (!result_ptr) {
throw new ThemisError(cryptosystem_name, ThemisErrorCode.NO_MEMORY)
}

status = libthemis._themis_secure_message_encrypt(
private_key_ptr, this.privateKey.length,
public_key_ptr, this.publicKey.length,
message_ptr, message.length,
result_ptr, result_length_ptr
)
if (status != ThemisErrorCode.SUCCESS) {
throw new ThemisError(cryptosystem_name, status)
}

result_length = libthemis.getValue(result_length_ptr, 'i32')

return libthemis.HEAPU8.slice(result_ptr, result_ptr + result_length)
}
finally {
libthemis._memset(private_key_ptr, 0, this.privateKey.length)
libthemis._free(private_key_ptr)
libthemis._free(public_key_ptr)
libthemis._free(message_ptr)
libthemis._free(result_ptr)
}
}

decrypt(message) {
message = utils.coerceToBytes(message)
if (message.length == 0) {
throw new ThemisError(cryptosystem_name, ThemisErrorCode.INVALID_PARAMETER,
'message must be not empty')
}

let status
/// C API uses "size_t" for lengths, it's defined as "i32" in Emscripten
let result_length_ptr = libthemis.allocate(4, 'i32', libthemis.ALLOC_STACK)
let private_key_ptr, public_key_ptr, message_ptr, result_ptr, result_length
try {
private_key_ptr = libthemis._malloc(this.privateKey.length)
public_key_ptr = libthemis._malloc(this.publicKey.length)
message_ptr = libthemis._malloc(message.length)
if (!private_key_ptr || !public_key_ptr || !message_ptr) {
throw new ThemisError(cryptosystem_name, ThemisErrorCode.NO_MEMORY)
}

libthemis.writeArrayToMemory(this.privateKey, private_key_ptr)
libthemis.writeArrayToMemory(this.publicKey, public_key_ptr)
libthemis.writeArrayToMemory(message, message_ptr)

status = libthemis._themis_secure_message_decrypt(
private_key_ptr, this.privateKey.length,
public_key_ptr, this.publicKey.length,
message_ptr, message.length,
null, result_length_ptr
)
if (status != ThemisErrorCode.BUFFER_TOO_SMALL) {
throw new ThemisError(cryptosystem_name, status)
}

result_length = libthemis.getValue(result_length_ptr, 'i32')
result_ptr = libthemis._malloc(result_length)
if (!result_ptr) {
throw new ThemisError(cryptosystem_name, ThemisErrorCode.NO_MEMORY)
}

status = libthemis._themis_secure_message_decrypt(
private_key_ptr, this.privateKey.length,
public_key_ptr, this.publicKey.length,
message_ptr, message.length,
result_ptr, result_length_ptr
)
if (status != ThemisErrorCode.SUCCESS) {
throw new ThemisError(cryptosystem_name, status)
}

result_length = libthemis.getValue(result_length_ptr, 'i32')

return libthemis.HEAPU8.slice(result_ptr, result_ptr + result_length)
}
finally {
libthemis._memset(private_key_ptr, 0, this.privateKey.length)
libthemis._free(private_key_ptr)
libthemis._free(public_key_ptr)
libthemis._free(message_ptr)
libthemis._free(result_ptr)
}
}
}

class SecureMessageSign {
constructor(privateKey) {
if (!(privateKey instanceof keygen.PrivateKey)) {
throw new ThemisError(cryptosystem_name, ThemisErrorCode.INVALID_PARAMETER,
'invalid argument: expected PrivateKey')
}
this.privateKey = privateKey
}

sign(message) {
message = utils.coerceToBytes(message)
if (message.length == 0) {
throw new ThemisError(cryptosystem_name, ThemisErrorCode.INVALID_PARAMETER,
'message must be not empty')
}

let status
/// C API uses "size_t" for lengths, it's defined as "i32" in Emscripten
let result_length_ptr = libthemis.allocate(4, 'i32', libthemis.ALLOC_STACK)
let private_key_ptr, message_ptr, result_ptr, result_length
try {
private_key_ptr = libthemis._malloc(this.privateKey.length)
message_ptr = libthemis._malloc(message.length)
if (!private_key_ptr || !message_ptr) {
throw new ThemisError(cryptosystem_name, ThemisErrorCode.NO_MEMORY)
}

libthemis.writeArrayToMemory(this.privateKey, private_key_ptr)
libthemis.writeArrayToMemory(message, message_ptr)

status = libthemis._themis_secure_message_sign(
private_key_ptr, this.privateKey.length,
message_ptr, message.length,
null, result_length_ptr
)
if (status != ThemisErrorCode.BUFFER_TOO_SMALL) {
throw new ThemisError(cryptosystem_name, status)
}

result_length = libthemis.getValue(result_length_ptr, 'i32')
result_ptr = libthemis._malloc(result_length)
if (!result_ptr) {
throw new ThemisError(cryptosystem_name, ThemisErrorCode.NO_MEMORY)
}

status = libthemis._themis_secure_message_sign(
private_key_ptr, this.privateKey.length,
message_ptr, message.length,
result_ptr, result_length_ptr
)
if (status != ThemisErrorCode.SUCCESS) {
throw new ThemisError(cryptosystem_name, status)
}

result_length = libthemis.getValue(result_length_ptr, 'i32')

return libthemis.HEAPU8.slice(result_ptr, result_ptr + result_length)
}
finally {
libthemis._memset(private_key_ptr, 0, this.privateKey.length)
libthemis._free(private_key_ptr)
libthemis._free(message_ptr)
libthemis._free(result_ptr)
}
}
}

class SecureMessageVerify {
constructor(publicKey) {
if (!(publicKey instanceof keygen.PublicKey)) {
throw new ThemisError(cryptosystem_name, ThemisErrorCode.INVALID_PARAMETER,
'invalid argument: expected PublicKey')
}
this.publicKey = publicKey
}

verify(message) {
message = utils.coerceToBytes(message)
if (message.length == 0) {
throw new ThemisError(cryptosystem_name, ThemisErrorCode.INVALID_PARAMETER,
'message must be not empty')
}

let status
/// C API uses "size_t" for lengths, it's defined as "i32" in Emscripten
let result_length_ptr = libthemis.allocate(4, 'i32', libthemis.ALLOC_STACK)
let public_key_ptr, message_ptr, result_ptr, result_length
try {
public_key_ptr = libthemis._malloc(this.publicKey.length)
message_ptr = libthemis._malloc(message.length)
if (!public_key_ptr || !message_ptr) {
throw new ThemisError(cryptosystem_name, ThemisErrorCode.NO_MEMORY)
}

libthemis.writeArrayToMemory(this.publicKey, public_key_ptr)
libthemis.writeArrayToMemory(message, message_ptr)

status = libthemis._themis_secure_message_verify(
public_key_ptr, this.publicKey.length,
message_ptr, message.length,
null, result_length_ptr
)
if (status != ThemisErrorCode.BUFFER_TOO_SMALL) {
throw new ThemisError(cryptosystem_name, status)
}

result_length = libthemis.getValue(result_length_ptr, 'i32')
result_ptr = libthemis._malloc(result_length)
if (!result_ptr) {
throw new ThemisError(cryptosystem_name, ThemisErrorCode.NO_MEMORY)
}

status = libthemis._themis_secure_message_verify(
public_key_ptr, this.publicKey.length,
message_ptr, message.length,
result_ptr, result_length_ptr
)
if (status != ThemisErrorCode.SUCCESS) {
throw new ThemisError(cryptosystem_name, status)
}

result_length = libthemis.getValue(result_length_ptr, 'i32')

return libthemis.HEAPU8.slice(result_ptr, result_ptr + result_length)
}
finally {
libthemis._free(public_key_ptr)
libthemis._free(message_ptr)
libthemis._free(result_ptr)
}
}
}

module.exports.SecureMessage = SecureMessage
module.exports.SecureMessageSign = SecureMessageSign
module.exports.SecureMessageVerify = SecureMessageVerify
Loading