mirror of
https://github.com/cliffe/SecGen.git
synced 2026-02-22 19:58:03 +00:00
30 lines
962 B
XML
30 lines
962 B
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>
|
|
</encoder>
|