Decode encrypted POCSAG messages (thanks to JG1UAA for the code).

This commit is contained in:
Jonathan Naylor 2020-12-14 12:22:43 +00:00
parent 56f361b3e4
commit 77daf86723
2 changed files with 24 additions and 3 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (C) 2018,2019 by Jonathan Naylor G4KLX
* Copyright (C) 2018,2019,2020 by Jonathan Naylor G4KLX
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -81,6 +81,8 @@ private:
bool openFile();
bool writeFile(const unsigned char* data);
void closeFile();
void decodeROT1(const std::string& in, unsigned int start, std::string& out) const;
};
#endif