-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
placing AES key to PROGMEM when available
- Loading branch information
1 parent
82abf59
commit 2814ef6
Showing
5 changed files
with
72 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/******************************************************************************* | ||
Copyright (C) 2015 OLogN Technologies AG | ||
This program is free software; you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License version 2 as | ||
published by the Free Software Foundation. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License along | ||
with this program; if not, write to the Free Software Foundation, Inc., | ||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
*******************************************************************************/ | ||
|
||
/******************************************************************************* | ||
THIS FILE IS MANUALLY OR AUTOMATICALLY GENERATED BASED ON DESIRED PLUGIN LIST | ||
*******************************************************************************/ | ||
|
||
|
||
|
||
#if !defined __ZEPTO_CONFIG_H__ | ||
#define __ZEPTO_CONFIG_H__ | ||
|
||
#define DECLARE_AES_ENCRYPTION_KEY \ | ||
const uint8_t AES_ENCRYPTION_KEY[16] ZEPTO_PROG_CONSTANT_LOCATION = \ | ||
{ \ | ||
0x00, \ | ||
0x01, \ | ||
0x02, \ | ||
0x03, \ | ||
0x04, \ | ||
0x05, \ | ||
0x06, \ | ||
0x07, \ | ||
0x08, \ | ||
0x09, \ | ||
0x0a, \ | ||
0x0b, \ | ||
0x0c, \ | ||
0x0d, \ | ||
0x0e, \ | ||
0x0f, \ | ||
}; \ | ||
|
||
|
||
#endif // __ZEPTO_CONFIG_H__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters