(input string)
| 94 | } |
| 95 | |
| 96 | func (e *Encoder) EncodeLowerSpecial(input string) ([]byte, error) { |
| 97 | return e.EncodeGeneric([]byte(input), 5) |
| 98 | } |
| 99 | |
| 100 | func (e *Encoder) EncodeLowerUpperDigitSpecial(input string) ([]byte, error) { |
| 101 | return e.EncodeGeneric([]byte(input), 6) |
no test coverage detected