From 52855559aad3a04bed1772273857d6f7f1c6694b Mon Sep 17 00:00:00 2001 From: Jannled <7737131+Jannled@users.noreply.github.com> Date: Mon, 15 Dec 2025 18:50:39 +0100 Subject: [PATCH] Comment out hamming distance The min hamming distance could reduce the solution space for the curious --- Dockerfile | 2 +- app/config.py | 2 +- static/src/levelCreation/Level.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9f8c976..6a9c3d6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ ARG PROMETHEUS_MULTIPROC_DIR="/tmp/prometheus_multiproc" MAINTAINER Max Planck Institute for Security and Privacy LABEL org.opencontainers.image.authors="Max Planck Institute for Security and Privacy" # NOTE Also change the version in config.py -LABEL org.opencontainers.image.version="2.1.1" +LABEL org.opencontainers.image.version="2.1.2" LABEL org.opencontainers.image.licenses="AGPL-3.0-only" LABEL org.opencontainers.image.description="Ready to deploy Docker container to use ReverSim for research. ReverSim is an open-source environment for the browser, originally developed at the Max Planck Institute for Security and Privacy (MPI-SP) to study human aspects in hardware reverse engineering." LABEL org.opencontainers.image.source="https://github.com/emsec/ReverSim" diff --git a/app/config.py b/app/config.py index cfaad3a..b332190 100644 --- a/app/config.py +++ b/app/config.py @@ -16,7 +16,7 @@ # CONFIG Current Log File Version. # NOTE Also change this in the Dockerfile -LOGFILE_VERSION = "2.1.1" # Major.Milestone.Subversion +LOGFILE_VERSION = "2.1.2" # Major.Milestone.Subversion PSEUDONYM_LENGTH = 32 LEVEL_ENCODING = 'UTF-8' # was Windows-1252 diff --git a/static/src/levelCreation/Level.js b/static/src/levelCreation/Level.js index 46a0b7d..6cd33ff 100644 --- a/static/src/levelCreation/Level.js +++ b/static/src/levelCreation/Level.js @@ -74,7 +74,7 @@ class Level { const result = this.circuit.calculateAllSolutions(true, this.initialSwitchStates); - console.log('min hd: ' + result.minHD.toString()) + //console.log('min hd: ' + result.minHD.toString()) return result.minHD; }