pluto  1
Small utility library for UUIDs, SHA1, and Encryption
tea.h
1 #pragma once
2 
3 #include <stdint.h>
4 
8 namespace plt {
9  void Encrypt (uint32_t* v, uint32_t* k);
10  void Decrypt (uint32_t* v, uint32_t* k);
11 }
plt
Do not use these functions.
Definition: FileDataReader.h:16
plt::Encrypt
void Encrypt(uint32_t *v, uint32_t *k)
Private encryption method.
plt::Decrypt
void Decrypt(uint32_t *v, uint32_t *k)
Private decryption method.