mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
22 lines
289 B
C++
22 lines
289 B
C++
/*
|
|
* DeRandomizer.h
|
|
*
|
|
* Created on: 07/11/2016
|
|
* Author: Lucas Teske
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace sathelper
|
|
{
|
|
class Derandomizer
|
|
{
|
|
private:
|
|
static uint8_t pn[255];
|
|
|
|
public:
|
|
static void work(uint8_t *data, int length);
|
|
};
|
|
}
|