1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /*====================================================================*
- *
- * Copyright (c) 2013 Qualcomm Atheros, Inc.
- *
- * All rights reserved.
- *
- *====================================================================*/
- /*====================================================================*
- *
- * oHPAVKey.hpp - oHPAVKey class declaration;
- *
- * implement HomePlug AV compliant password encryption;
- *
- * Contributor(s):
- * Charles Maier <charles.maier@intellon.com>
- *
- *--------------------------------------------------------------------*/
- #ifndef ooHPAVKEY_HEADER
- #define ooHPAVKEY_HEADER
- /*====================================================================*
- * system header files;
- *--------------------------------------------------------------------*/
- #include <stdint.h>
- #include <string.h>
- /*====================================================================*
- * system header files;
- *--------------------------------------------------------------------*/
- #include "../classes/stdafx.hpp"
- #include "../classes/oSHA256.hpp"
- /*====================================================================*
- * class constants;
- *--------------------------------------------------------------------*/
- #define oHPAVKEY_CHAR_MIN 0x20
- #define oHPAVKEY_CHAR_MAX 0x7E
- #define oHPAVKEY_PHRASE_MIN 12
- #define oHPAVKEY_PHRASE_MAX 64
- #define oHPAVKEY_N_SHA 0
- #define oHPAVKEY_N_DAK 1
- #define oHPAVKEY_N_NMK 2
- #define oHPAVKEY_N_NID 3
- #define oHPAVKEY_B_VERBOSE (1 << 0)
- #define oHPAVKEY_B_SILENCE (1 << 1)
- #define oHPAVKEY_B_ENFORCE (1 << 2)
- /*====================================================================*
- * class interface;
- *--------------------------------------------------------------------*/
- class __declspec (dllexport) oHPAVKey: private oSHA256
- {
- public:
- oHPAVKey ();
- ~oHPAVKey ();
- byte * Digest () const;
- bool IllegalPassPhrase (char const * phrase) const;
- bool IllegalCharValue (unsigned c) const;
- oHPAVKey & ExportKey (void * memory);
- oHPAVKey & ComputeNMK (char const * string);
- oHPAVKey & ComputeDAK (char const * string);
- oHPAVKey & ComputeNID (byte level);
- static unsigned const DigestLength;
- static unsigned const DAKLength;
- static unsigned const NMKLength;
- static unsigned const NIDLength;
- static unsigned const MinPhraseLength;
- static unsigned const MaxPhraseLength;
- static byte const MinCharValue;
- static byte const MaxCharValue;
- oHPAVKey & Print (char const * phrase);
- private:
- oHPAVKey & Hash (unsigned count);
- byte * mdigest;
- size_t mlength;
- };
- /*====================================================================*
- *
- *--------------------------------------------------------------------*/
- #endif
|