Encodes the input string using LOWER_SPECIAL encoding. Args: input_string (str): The string to encode. Returns: bytes: The encoded data.
(self, input_string: str)
| 441 | ) |
| 442 | |
| 443 | def _encode_lower_special(self, input_string: str) -> bytes: |
| 444 | """ |
| 445 | Encodes the input string using LOWER_SPECIAL encoding. |
| 446 | |
| 447 | Args: |
| 448 | input_string (str): The string to encode. |
| 449 | |
| 450 | Returns: |
| 451 | bytes: The encoded data. |
| 452 | """ |
| 453 | chars = list(input_string) |
| 454 | return self._encode_generic(chars, 5) |
| 455 | |
| 456 | def _encode_lower_upper_digit_special(self, input_string: str) -> bytes: |
| 457 | """ |