Cipher Dict

Cipher Dict

In this mission, you need to convert a plain text to a nested cipher dictionary according to the following steps. This conversion is opposite to one in Cipher Dict (decryption) mission.

  1. Encode the given plain text to utf-8.

  2. Convert this value as a hexadecimal number, then convert the result it to a decimal number. (Every digit of this number will be a key in some level of nested dictionary.)

  3. Split decimal number into blocks with strict ascending/descending order (no same digit repetition allowed in the same block,...

You should be an authorized user in order to see the full description and start solving this mission.