Skip to content

Commit

Permalink
release 1.0.20, fix packaging issues (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
aldenml authored Apr 18, 2023
1 parent faca0da commit 68d2a21
Show file tree
Hide file tree
Showing 12 changed files with 103 additions and 16 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.19)
project(ecc VERSION 1.0.20)
project(ecc LANGUAGES C)

list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules)
Expand Down
98 changes: 92 additions & 6 deletions bindings/js/dist/ecc.dev.js

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/dist/ecc.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions bindings/js/dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export const libecc_module: (libecc_module?: {}) => Promise<any>;
export * from "./util.js";
export * from "./hash.js";
export * from "./kdf.js";
export * from "./aead.js";
export * from "./oprf.js";
export * from "./opaque.js";
export * from "./pre.js";
1 change: 1 addition & 0 deletions bindings/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export const libecc_module = libecc.default;
export * from "./util.js";
export * from "./hash.js";
export * from "./kdf.js";
export * from "./aead.js";
export * from "./oprf.js";
export * from "./opaque.js";
export * from "./pre.js";
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.19",
"version": "1.0.20",
"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.19"
version = "1.0.20"

java {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down
2 changes: 1 addition & 1 deletion bindings/jvm/src/main/java/org/ssohub/crypto/ecc/Aead.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public static Data chacha20poly1305Encrypt(
* @param aad the associated additional authenticated data
* @param nonce public nonce, should never ever be reused with the same key, size:ecc_aead_chacha20poly1305_NONCESIZE
* @param key number of passes, size:ecc_aead_chacha20poly1305_KEYSIZE
* @return the encrypted form of the input
* @return the decrypted form of the input or null if the verification fails.
*/
public static Data chacha20poly1305Decrypt(
Data ciphertext,
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.19
version = 1.0.20
author = Alden Torres
author_email = [email protected]
description = elliptic curves crypto functions
Expand Down
1 change: 0 additions & 1 deletion build-js.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ EMCC_FLAGS="-Oz -flto --no-entry \
-sMODULARIZE=1 \
-sEXPORT_ES6=1 \
-sFILESYSTEM=0 \
-sUSES_DYNAMIC_ALLOC=1 \
-sMALLOC=emmalloc \
-sALLOW_MEMORY_GROWTH=1 \
-sSTACK_SIZE=65536 \
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.19
sonar.projectVersion=1.0.20

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

0 comments on commit 68d2a21

Please sign in to comment.