GM6000 Digital Heater Controller Branch: main
SDX-1330
TShellSecurity.h
Go to the documentation of this file.
1#ifndef Ajax_Main_app_TShell_Security_h_
2#define Ajax_Main_app_TShell_Security_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
16#include "colony_config.h"
17#include "Cpl/TShell/Security.h"
18#include "Driver/Crypto/Hash.h"
19
20
21/// The one and only valid user account
22#ifndef OPTION_AJAX_MAIN_TSHELL_SECURITY_USER_NAME
23#define OPTION_AJAX_MAIN_TSHELL_SECURITY_USER_NAME "dilbert"
24#endif
25
26
27///
28namespace Ajax {
29///
30namespace Main {
31
32/// Validates the TShell login password
34{
35public:
36 /// Constructor
37 TShellSecurity( Driver::Crypto::Hash& sha512HashFunciton ): m_sha512( sha512HashFunciton) {}
38
39public:
40 /// Cpl::TShell::Security
41 Permission_T validateCredentials( const char* username, const char* password ) noexcept;
42
43protected:
44 /// Hash function
46};
47
48
49}; // end namespaces
50};
51#endif // end header latch
Validates the TShell login password.
Definition TShellSecurity.h:34
Driver::Crypto::Hash & m_sha512
Hash function.
Definition TShellSecurity.h:45
TShellSecurity(Driver::Crypto::Hash &sha512HashFunciton)
Constructor.
Definition TShellSecurity.h:37
Permission_T validateCredentials(const char *username, const char *password) noexcept
Cpl::TShell::Security.
This abstract defines the interface for validating a 'user login' for TShell.
Definition Security.h:31
Permission_T
Permissions levels.
Definition Security.h:34
This class defines an abstract interface for a Hashing Algorithms.
Definition Hash.h:34
The 'Ajax' namespace is the root name space all GM6000 application specific source code.