Преглед изворни кода

MANGLER to Mangler - conformity

master
Pete McNeil пре 3 година
родитељ
комит
3a4f5ea518
3 измењених фајлова са 4 додато и 4 уклоњено
  1. 1
    1
      snfNETmgr.cpp
  2. 1
    1
      snfNETmgr.hpp
  3. 2
    2
      snf_engine.cpp

+ 1
- 1
snfNETmgr.cpp Прегледај датотеку

@@ -509,7 +509,7 @@ void snfNETmgr::sync() {

//--- Prepare the secret.

cd::MANGLER ResponseGenerator; // Grab a mangler.
cd::Mangler ResponseGenerator; // Grab a mangler.
for(unsigned int i = 0; i < Secret.length(); i++) // Fill it with the
ResponseGenerator.Encrypt(Secret.at(i)); // security key.


+ 1
- 1
snfNETmgr.hpp Прегледај датотеку

@@ -48,7 +48,7 @@ class snfNETmgr : public cd::Thread {
cd::Timeout SYNCTimer; // SYNC timer.

void evolvePad(std::string Entropy = ""); // Add entropy to and evolve.
cd::MANGLER PadGenerator; // Random pad source.
cd::Mangler PadGenerator; // Random pad source.
PadBuffer OneTimePad(int Len = SNFPadSize); // Provides Len bytes of one time pad.

// Configuration data

+ 2
- 2
snf_engine.cpp Прегледај датотеку

@@ -98,7 +98,7 @@ void TokenMatrix::Load(std::ifstream& F) {

void TokenMatrix::Validate(std::string& SecurityKey) { // Decrypts and validates the matrix.

cd::MANGLER ValidationChecker; // Create a mangler engine for validation.
cd::Mangler ValidationChecker; // Create a mangler engine for validation.

// In order to do the validation we must look at the token matrix as a sequence of bytes.
// We will be decrypting the first and last SecurtySegmentSize of this sequence and then
@@ -167,7 +167,7 @@ void TokenMatrix::Validate(std::string& SecurityKey) {

void TokenMatrix::Verify(std::string& SecurityKey) { // Builds and verifies a file digest.

cd::MANGLER DigestChecker; // Create a mangler for the digest.
cd::Mangler DigestChecker; // Create a mangler for the digest.

// Gain access to our token matrix as bytes.


Loading…
Откажи
Сачувај