diff --git a/hash_ops/hash_template.txt b/hash_ops/hash_template.txt new file mode 100644 index 0000000..299a03b --- /dev/null +++ b/hash_ops/hash_template.txt @@ -0,0 +1,15 @@ +''' +This is a template for a hash algorithm +''' + + +class Algorithm: + + def __init__(self): + self.hash_type = "hash_type" + self.description = "Description of module" + + def generate(self, cli_object): + + # Return the hash + return hash_value