Skip to content

Commit

Permalink
release 1.0.17 (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
aldenml committed Mar 5, 2023
1 parent b50f9e9 commit 5495e91
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ else()
set(BUILD_SHARED_LIBS ON)
endif()

project(ecc VERSION 1.0.16)
project(ecc VERSION 1.0.17)
project(ecc LANGUAGES C)

list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules)
Expand Down
14 changes: 13 additions & 1 deletion bindings/js/dist/ecc.dev.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bindings/js/dist/ecc.min.js

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions bindings/js/dist/opaque.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,11 @@ export function opaque_CreateRegistrationResponse(request: Uint8Array, server_pu
* @param {Uint8Array} server_identity the optional encoded server identity
* @param {Uint8Array} client_identity the optional encoded client identity
* @param {number} mhf the memory hard function to use
* @param {Uint8Array} mhf_salt the salt to use in the memory hard function computation
* @param {Uint8Array} nonce size:ecc_opaque_ristretto255_sha512_Nn
* @return object {record, exportKey}
*/
export function opaque_FinalizeRegistrationRequestWithNonce(password: Uint8Array, blind: Uint8Array, response_raw: Uint8Array, server_identity: Uint8Array, client_identity: Uint8Array, mhf: number, nonce: Uint8Array): {
export function opaque_FinalizeRegistrationRequestWithNonce(password: Uint8Array, blind: Uint8Array, response_raw: Uint8Array, server_identity: Uint8Array, client_identity: Uint8Array, mhf: number, mhf_salt: Uint8Array, nonce: Uint8Array): {
registrationRecord: Uint8Array;
exportKey: Uint8Array;
};
Expand All @@ -72,9 +73,10 @@ export function opaque_FinalizeRegistrationRequestWithNonce(password: Uint8Array
* @param {Uint8Array} server_identity the optional encoded server identity
* @param {Uint8Array} client_identity the optional encoded client identity
* @param {number} mhf the memory hard function to use
* @param {Uint8Array} mhf_salt the salt to use in the memory hard function computation
* @return object {record, exportKey}
*/
export function opaque_FinalizeRegistrationRequest(password: Uint8Array, blind: Uint8Array, response_raw: Uint8Array, server_identity: Uint8Array, client_identity: Uint8Array, mhf: number): {
export function opaque_FinalizeRegistrationRequest(password: Uint8Array, blind: Uint8Array, response_raw: Uint8Array, server_identity: Uint8Array, client_identity: Uint8Array, mhf: number, mhf_salt: Uint8Array): {
registrationRecord: Uint8Array;
exportKey: Uint8Array;
};
Expand Down Expand Up @@ -105,10 +107,11 @@ export function opaque_ClientInit(state: Uint8Array, password: Uint8Array): Uint
* to server_public_key if not specified
* @param {Uint8Array} ke2_raw a KE2 message structure
* @param {number} mhf
* @param {Uint8Array} mhf_salt the salt to use in the memory hard function computation
* @param {Uint8Array} context
* @return object {ke3, sessionKey, exportKey, finishRet}
*/
export function opaque_ClientFinish(state_raw: Uint8Array, client_identity: Uint8Array, server_identity: Uint8Array, ke2_raw: Uint8Array, mhf: number, context: Uint8Array): {
export function opaque_ClientFinish(state_raw: Uint8Array, client_identity: Uint8Array, server_identity: Uint8Array, ke2_raw: Uint8Array, mhf: number, mhf_salt: Uint8Array, context: Uint8Array): {
ke3: Uint8Array;
sessionKey: Uint8Array;
exportKey: Uint8Array;
Expand Down
4 changes: 2 additions & 2 deletions bindings/js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bindings/js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aldenml/ecc",
"version": "1.0.16",
"version": "1.0.17",
"description": "elliptic curves crypto functions",
"main": "index.js",
"types": "./dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion bindings/jvm/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
}

group = "org.ssohub"
version = "1.0.16"
version = "1.0.17"

java {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = libecc
version = 1.0.16
version = 1.0.17
author = Alden Torres
author_email = [email protected]
description = elliptic curves crypto functions
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
sonar.projectName=ecc
sonar.projectKey=aldenml_ecc
sonar.organization=aldenml
sonar.projectVersion=1.0.16
sonar.projectVersion=1.0.17

sonar.sources=src
sonar.sourceEncoding=UTF-8

0 comments on commit 5495e91

Please sign in to comment.