summaryrefslogtreecommitdiff
path: root/security-manager/src/security-manager.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'security-manager/src/security-manager.hpp')
-rw-r--r--security-manager/src/security-manager.hpp37
1 files changed, 37 insertions, 0 deletions
diff --git a/security-manager/src/security-manager.hpp b/security-manager/src/security-manager.hpp
new file mode 100644
index 0000000..b3380e6
--- /dev/null
+++ b/security-manager/src/security-manager.hpp
@@ -0,0 +1,37 @@
+/*
+// Copyright (c) 2019 Intel Corporation
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+*/
+
+namespace security_manager
+{
+
+struct UserAssertedEventRecord
+{
+ bool rootEnabledEvent;
+ bool unSupportedShellEvent;
+ bool uidZeroAssignedEvent;
+ bool weakHashAlgorithmEvent;
+};
+
+enum class PasswordHashAlgorithm : unsigned char
+{
+ hashAlgoMD5 = 1,
+ hashAlgoBlowFish = 2,
+ hashAlgoEksblowfish = 3,
+ hashAlgoNT = 4,
+ hashAlgoMax
+};
+
+} // namespace security_manager