Available MAC Algorithms
The following table lists all MAC algorithms available in this environment.
Name |
Alias |
Message |
{% set macAlgorithms = collector.getData().algorithm.algorithms %}
{% if macAlgorithms['MAC'] is defined %}
{% for alias, alg in macAlgorithms['MAC'] %}
{{ alg.name }} |
{{ alias }} |
{% if alg.name in collector.getData().algorithm.messages|keys %}
{{ collector.getData().algorithm.messages[alg.name]['message']|raw }}
{% endif %}
|
{% endfor %}
{% else %}
There is no MAC algorithm. Did you install a package providing MAC algorithms? |
{% endif %}