Arduino Cryptography Library
ChaChaPoly.h
1 /*
2  * Copyright (C) 2015 Southern Storm Software, Pty Ltd.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included
12  * in all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20  * DEALINGS IN THE SOFTWARE.
21  */
22 
23 #ifndef CRYPTO_CHACHAPOLY_H
24 #define CRYPTO_CHACHAPOLY_H
25 
26 #include "AuthenticatedCipher.h"
27 #include "ChaCha.h"
28 #include "Poly1305.h"
29 
31 {
32 public:
33  ChaChaPoly();
34  virtual ~ChaChaPoly();
35 
36  size_t keySize() const;
37  size_t ivSize() const;
38  size_t tagSize() const;
39 
40  bool setKey(const uint8_t *key, size_t len);
41  bool setIV(const uint8_t *iv, size_t len);
42 
43  void encrypt(uint8_t *output, const uint8_t *input, size_t len);
44  void decrypt(uint8_t *output, const uint8_t *input, size_t len);
45 
46  void addAuthData(const void *data, size_t len);
47 
48  void computeTag(void *tag, size_t len);
49  bool checkTag(const void *tag, size_t len);
50 
51  void clear();
52 
53 private:
54  ChaCha chacha;
55  Poly1305 poly1305;
56  struct {
57  uint8_t nonce[16];
58  uint64_t authSize;
59  uint64_t dataSize;
60  bool dataStarted;
61  uint8_t ivSize;
62  } state;
63 };
64 
65 #endif
Abstract base class for authenticated ciphers.
Authenticated cipher based on ChaCha and Poly1305.
Definition: ChaChaPoly.h:31
ChaChaPoly()
Constructs a new ChaChaPoly authenticated cipher.
Definition: ChaChaPoly.cpp:45
void clear()
Clears all security-sensitive state from this cipher.
Definition: ChaChaPoly.cpp:164
bool setIV(const uint8_t *iv, size_t len)
Sets the initialization vector to use for future encryption and decryption operations.
Definition: ChaChaPoly.cpp:84
size_t keySize() const
Default size of the key for this cipher, in bytes.
Definition: ChaChaPoly.cpp:61
void decrypt(uint8_t *output, const uint8_t *input, size_t len)
Decrypts an input buffer and writes the plaintext to an output buffer.
Definition: ChaChaPoly.cpp:116
void addAuthData(const void *data, size_t len)
Adds extra data that will be authenticated but not encrypted.
Definition: ChaChaPoly.cpp:127
size_t ivSize() const
Size of the initialization vector for this cipher, in bytes.
virtual ~ChaChaPoly()
Destroys this ChaChaPoly authenticated cipher.
Definition: ChaChaPoly.cpp:56
void encrypt(uint8_t *output, const uint8_t *input, size_t len)
Encrypts an input buffer and writes the ciphertext to an output buffer.
Definition: ChaChaPoly.cpp:105
size_t tagSize() const
Returns the size of the authentication tag.
Definition: ChaChaPoly.cpp:73
void computeTag(void *tag, size_t len)
Finalizes the encryption process and computes the authentication tag.
Definition: ChaChaPoly.cpp:135
bool setKey(const uint8_t *key, size_t len)
Sets the key to use for future encryption and decryption operations.
Definition: ChaChaPoly.cpp:79
bool checkTag(const void *tag, size_t len)
Finalizes the decryption process and checks the authentication tag.
Definition: ChaChaPoly.cpp:150
ChaCha stream cipher.
Definition: ChaCha.h:31
Poly1305 message authenticator.
Definition: Poly1305.h:30