Skip to content

Commit 15d72a9

Browse files
committed
Update flags Dockerfile.
Signed-off-by: Default <guilianolehmann@live.de>
1 parent ed5df95 commit 15d72a9

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Dockerfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,12 @@ RUN apt-get -y update && \
77
# Get liboqs
88
RUN git clone --depth 1 --branch main https://github.com/open-quantum-safe/liboqs
99

10-
# Install liboqs
11-
RUN cmake -S liboqs -B liboqs/build -DBUILD_SHARED_LIBS=ON && \
10+
# Install liboqs with stateful-signature algorithms enabled
11+
RUN cmake -S liboqs -B liboqs/build \
12+
-DBUILD_SHARED_LIBS=ON \
13+
-DOQS_ENABLE_SIG_STFL_LMS=ON \
14+
-DOQS_ENABLE_SIG_STFL_XMSS=ON \
15+
-DOQS_HAZARDOUS_EXPERIMENTAL_ENABLE_SIG_STFL_KEY_SIG_GEN=ON && \
1216
cmake --build liboqs/build --parallel 4 && \
1317
cmake --build liboqs/build --target install
1418

0 commit comments

Comments
 (0)