summaryrefslogtreecommitdiffstats
path: root/src/PolarSSL++/AesCfb128Encryptor.h
diff options
context:
space:
mode:
authorLogicParrot <LogicParrot@users.noreply.github.com>2016-02-05 22:45:45 +0100
committerLogicParrot <LogicParrot@users.noreply.github.com>2016-02-05 22:50:18 +0100
commitca6ef58b1ee8521e4b940ee4883dee714960e413 (patch)
tree8532add455224b07c07a759e3d906f50c0695888 /src/PolarSSL++/AesCfb128Encryptor.h
parentMerge pull request #2972 from marvinkopf/PlayerAutoComplete (diff)
downloadcuberite-ca6ef58b1ee8521e4b940ee4883dee714960e413.tar
cuberite-ca6ef58b1ee8521e4b940ee4883dee714960e413.tar.gz
cuberite-ca6ef58b1ee8521e4b940ee4883dee714960e413.tar.bz2
cuberite-ca6ef58b1ee8521e4b940ee4883dee714960e413.tar.lz
cuberite-ca6ef58b1ee8521e4b940ee4883dee714960e413.tar.xz
cuberite-ca6ef58b1ee8521e4b940ee4883dee714960e413.tar.zst
cuberite-ca6ef58b1ee8521e4b940ee4883dee714960e413.zip
Diffstat (limited to 'src/PolarSSL++/AesCfb128Encryptor.h')
-rw-r--r--src/PolarSSL++/AesCfb128Encryptor.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/PolarSSL++/AesCfb128Encryptor.h b/src/PolarSSL++/AesCfb128Encryptor.h
index 9dbb5d2c3..71280a098 100644
--- a/src/PolarSSL++/AesCfb128Encryptor.h
+++ b/src/PolarSSL++/AesCfb128Encryptor.h
@@ -21,25 +21,25 @@ class cAesCfb128Encryptor
public:
cAesCfb128Encryptor(void);
~cAesCfb128Encryptor();
-
+
/** Initializes the decryptor with the specified Key / IV */
void Init(const Byte a_Key[16], const Byte a_IV[16]);
-
+
/** Encrypts a_Length bytes of the plain data; produces a_Length output bytes */
void ProcessData(Byte * a_EncryptedOut, const Byte * a_PlainIn, size_t a_Length);
-
+
/** Returns true if the object has been initialized with the Key / IV */
bool IsValid(void) const { return m_IsValid; }
-
+
protected:
aes_context m_Aes;
-
+
/** The InitialVector, used by the CFB mode encryption */
Byte m_IV[16];
-
+
/** Current offset in the m_IV, used by the CFB mode encryption */
size_t m_IVOffset;
-
+
/** Indicates whether the object has been initialized with the Key / IV */
bool m_IsValid;
} ;