packages feed

cacophony-0.10.0: tools/pretty-print/vector-template.jinja

{
"vectors": [
{%- for v in vectors %}
{
{%- if v.name %}
"name": {{ v.name }},
{%- endif %}
"protocol_name": {{ v.protocol_name }},
{%- if v.fail %}
"fail": {{ v.fail }},
{%- endif %}
"init_prologue": {{ v.init_prologue }},
{%- if v.init_psks %}
"init_psks": [
{%- for psk in v.init_psks -%}
{{ psk }}
{%- if loop.last -%}],{%- else -%}, {%- endif -%}
{%- endfor -%}
{%- endif %}
{%- if v.init_static %}
"init_static": {{ v.init_static }},
{%- endif %}
{%- if v.init_semiephemeral %}
"init_semiephemeral": {{ v.init_semiephemeral }},
{%- endif %}
{%- if v.init_ephemeral %}
"init_ephemeral": {{ v.init_ephemeral }},
{%- endif %}
{%- if v.init_remote_static %}
"init_remote_static": {{ v.init_remote_static }},
{%- endif %}
{%- if v.init_remote_semiephemeral %}
"init_remote_semiephemeral": {{ v.init_remote_semiephemeral }},
{%- endif %}
"resp_prologue": {{ v.resp_prologue }},
{%- if v.resp_psks %}
"resp_psks": [
{%- for psk in v.resp_psks -%}
{{ psk }}
{%- if loop.last -%}],{%- else -%}, {%- endif -%}
{%- endfor -%}
{%- endif %}
{%- if v.resp_static %}
"resp_static": {{ v.resp_static }},
{%- endif %}
{%- if v.resp_semiephemeral %}
"resp_semiephemeral": {{ v.resp_semiephemeral }},
{%- endif %}
{%- if v.resp_ephemeral %}
"resp_ephemeral": {{ v.resp_ephemeral }},
{%- endif %}
{%- if v.resp_remote_static %}
"resp_remote_static": {{ v.resp_remote_static }},
{%- endif %}
{%- if v.resp_remote_semiephemeral %}
"resp_remote_semiephemeral": {{ v.resp_remote_semiephemeral }},
{%- endif %}
{%- if v.handshake_hash %}
"handshake_hash": {{ v.handshake_hash }},
{%- endif %}
"messages": [
{%- for m in v.messages %}
{
"payload": {{ m.payload }},
"ciphertext": {{ m.ciphertext }}
{% if loop.last %}}{% else %}},{% endif %}
{%- endfor %}
]
{% if loop.last %}}{% else %}},{% endif %}
{%- endfor %}
]
}