
{ BasedOnStyle: LLVM, UseTab: Never, IndentWidth: 4, TabWidth: 4, BreakBeforeBraces: Stroustrup, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false, ColumnLimit: 0, AccessModifierOffset: -4, NamespaceIndentation: All } (this is the Visual Studio preset with only "BreakBeforeBraces" changed from Allman to Stroustrup)
16 lines
330 B
C
16 lines
330 B
C
#ifndef ENCRYPTION_FUNCTIONS_H
|
|
#define ENCRYPTION_FUNCTIONS_H
|
|
|
|
#include <QString>
|
|
|
|
#include <QVector>
|
|
#include <cstddef>
|
|
#include <iomanip>
|
|
#include <sstream>
|
|
#include <stdlib.h>
|
|
|
|
QString fanta_encrypt(QString p_input, unsigned int key);
|
|
QString fanta_decrypt(QString p_input, unsigned int key);
|
|
|
|
#endif // ENCRYPTION_FUNCTIONS_H
|