From f72836ba14afbb556789de4bc133812d5c3d4357 Mon Sep 17 00:00:00 2001 From: James Kasten Date: Tue, 11 Nov 2014 11:52:53 -0800 Subject: [PATCH] Add validator class to be used after configuration to guarantee correctness --- trustify/client/validator.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 trustify/client/validator.py diff --git a/trustify/client/validator.py b/trustify/client/validator.py new file mode 100644 index 000000000..99532f1a2 --- /dev/null +++ b/trustify/client/validator.py @@ -0,0 +1,12 @@ +class Validator(object): + """ + This Class will contain an API to validate configurations. + """ + def redirect(name): + return + def ocsp_stapling(name): + return + def https(names): + return + def hsts(name): + return