Skip to content

Commit b627b56

Browse files
committed
adding uica to bins
1 parent eaa2e85 commit b627b56

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

Makefile

+7-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ ROOT := $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
1616

1717
NODE_DIR := $(ROOT)/bins/node
1818
NODE := $(ROOT)/bins/node/bin/node
19+
UICA := $(ROOT)/bins/uiCA
1920
NODE_VERSION := 22.3.0
2021

2122
PATH := $(NODE_DIR)/bin:$(PATH)
@@ -27,6 +28,11 @@ BUILT_CRYPTOPT := $(ROOT)/dist/CryptOpt.js
2728
all: clean $(BUILT_CRYPTOPT)
2829
build: $(BUILT_CRYPTOPT)
2930

31+
$(UICA):
32+
mkdir -p ./bins
33+
git clone https://github.com/andreas-abel/uiCA.git bins/uiCA
34+
cd bins/uiCA && ./setup.sh
35+
3036
$(NODE):
3137
mkdir -p ./bins
3238
curl -L https://nodejs.org/dist/v$(NODE_VERSION)/node-v$(NODE_VERSION)-linux-x64.tar.xz | tar --extract --xz --directory ./bins
@@ -42,7 +48,7 @@ FIAT_BINARIES=unsaturated_solinas word_by_word_montgomery dettman_multiplication
4248
$(FIAT_CHECKSUMS): $(addprefix $(FIAT_DATA_DIR)/, $(FIAT_BINARIES))
4349
cd $(FIAT_DATA_DIR) && sha256sum $(FIAT_BINARIES) > $(notdir $(FIAT_CHECKSUMS))
4450

45-
$(BUILT_CRYPTOPT): $(NODE) node_modules $(shell find ./src -type f -name '*ts') $(FIAT_CHECKSUMS)
51+
$(BUILT_CRYPTOPT): $(NODE) $(UICA) node_modules $(shell find ./src -type f -name '*ts') $(FIAT_CHECKSUMS)
4652
@echo "Building CryptOpt"
4753
@PATH=$(PATH) npm run bundle
4854
@test -e "$(@)" && touch $(@) && echo "Successfully built CryptOpt. :)"

src/optimizer/measure.class.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ export default class MeasureUtil {
164164

165165
// call uiCA
166166
const uiCAArgs = ["-TPonly", "-arch", this.timer, "-raw", join(tmpDir, "binary.bin")];
167-
const r = spawnSync("./uiCA", uiCAArgs);
167+
const r = spawnSync("./bins/uiCA/uiCA.py", uiCAArgs);
168168
if (r.status != 0) {
169169
throw new Error(
170170
`uiCA command failed. STDERR:${r.stderr}, STDOUT: ${r.stdout}. May be because ./uiCA is not in the cwd.`,

0 commit comments

Comments
 (0)