Files
SecGen/modules/encoders/cipher/morse_code/secgen_metadata.xml
2021-12-21 13:28:45 +00:00

35 lines
1.1 KiB
XML

<?xml version="1.0"?>
<encoder xmlns="http://www.github/cliffe/SecGen/encoder"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.github/cliffe/SecGen/encoder">
<name>Morse Code Encoder</name>
<author>Thomas Shaw</author>
<module_license>MIT</module_license>
<description>Encodes a string into Morse code.</description>
<type>morse_code_encoder</type>
<type>ascii_reversible</type>
<type>string_encoder</type>
<platform>linux</platform>
<platform>windows</platform>
<difficulty>medium</difficulty>
<reference>https://gist.github.com/mikedamage/105081</reference>
<solution>Morse code decoders are available online e.g. https://morsecode.scphillips.com/translator.html</solution>
<read_fact>strings_to_encode</read_fact>
<default_input into="strings_to_encode">
<generator type="flag_generator"/>
</default_input>
<output_type>encoded_strings</output_type>
<CyBOK KA="F" topic="Artifact Analysis">
<keyword>Encoding and alternative data formats</keyword>
</CyBOK>
</encoder>