diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-05-10 08:46:36 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-07-17 15:57:46 -0400 |
commit | 3a45f6ffe95d4c51e4ad4e14f468feb3f4bd6b1e (patch) | |
tree | 955117d03238f618d9f472ef884edbca26c05cdd /src/test/include.am | |
parent | 860b9a991879c5be2b32cf98766adf5fdd349d41 (diff) | |
download | tor-3a45f6ffe95d4c51e4ad4e14f468feb3f4bd6b1e.tar.gz tor-3a45f6ffe95d4c51e4ad4e14f468feb3f4bd6b1e.zip |
Implementation for a simple order-preserving encryption scheme.
This is meant for use when encrypting the current time within the
period in order to get a monotonically increasing revision counter
without actually revealing our view of the time.
This scheme is far from the most state-of-the-art: don't use it for
anything else without careful analysis by somebody much smarter than
I am.
See ticket #25552 for some rationale for this logic.
Diffstat (limited to 'src/test/include.am')
-rw-r--r-- | src/test/include.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/include.am b/src/test/include.am index 7e5ad46117..390c84ebe4 100644 --- a/src/test/include.am +++ b/src/test/include.am @@ -117,6 +117,7 @@ src_test_test_SOURCES += \ src/test/test_controller.c \ src/test/test_controller_events.c \ src/test/test_crypto.c \ + src/test/test_crypto_ope.c \ src/test/test_crypto_openssl.c \ src/test/test_data.c \ src/test/test_dir.c \ |