Skip to content

Commit

Permalink
Encription moved
Browse files Browse the repository at this point in the history
  • Loading branch information
buldo committed Nov 17, 2023
1 parent 4d8c866 commit 888deef
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion WBLib.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ target_sources(wifibroadcast PRIVATE
${CMAKE_CURRENT_LIST_DIR}/src/radiotap/RadiotapHeaderTxHolder.hpp
${CMAKE_CURRENT_LIST_DIR}/src/radiotap/RSSIAccumulator.hpp
${CMAKE_CURRENT_LIST_DIR}/src/wifibroadcast_spdlog.cpp
${CMAKE_CURRENT_LIST_DIR}/src/Encryption.cpp
${CMAKE_CURRENT_LIST_DIR}/src/encription/Encryption.cpp
${CMAKE_CURRENT_LIST_DIR}/src/radiotap/RadiotapRxRfAggregator.cpp
)

Expand Down
2 changes: 1 addition & 1 deletion executables/benchmark.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include <sstream>
#include <string>

#include "../src/Encryption.h"
#include "../src/encription/Encryption.hpp"
#include "../src/fec/FEC.hpp"
#include "../src/HelperSources/RandomBufferPot.hpp"
#include "../src/HelperSources/SchedulingHelper.hpp"
Expand Down
2 changes: 1 addition & 1 deletion executables/unit_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

#include "../src/fec/FEC.hpp"

#include "../src/Encryption.h"
#include "../src/encription/Encryption.hpp"
#include "../src/HelperSources/Helper.hpp"
#include "../src/Ieee80211Header.hpp"
#include "../src/wifibroadcast_spdlog.hpp"
Expand Down
2 changes: 1 addition & 1 deletion executables/wfb_keygen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include <iostream>
#include <optional>

#include "../src/Encryption.h"
#include "../src/encription/Encryption.hpp"

/**
* Generates a new tx rx keypair and saves it to file for later use.
Expand Down
2 changes: 1 addition & 1 deletion src/WBTxRx.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include <thread>
#include <utility>

#include "Encryption.h"
#include "encription/Encryption.hpp"
#include "HelperSources/UINT16SeqNrHelper.hpp"
#include "HelperSources/UINT64SeqNrHelper.hpp"
#include "Ieee80211Header.hpp"
Expand Down
4 changes: 2 additions & 2 deletions src/Encryption.cpp → src/encription/Encryption.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
// Created by consti10 on 13.08.23.
//

#include "Encryption.h"
#include "Encryption.hpp"

#include <cassert>
#include <cstring>
#include <iostream>

#include <spdlog/spdlog.h>
#include "wifibroadcast_spdlog.hpp"
#include "../wifibroadcast_spdlog.hpp"

wb::KeyPairTxRx wb::generate_keypair_random() {
KeyPairTxRx ret{};
Expand Down
File renamed without changes.

0 comments on commit 888deef

Please sign in to comment.