const createEncoder = (type: EncoderType): Encoder.Encoder => {
    switch (type) {
    case EncoderType.Base64:
        return Encoder.createBase64Encoder();
    case EncoderType.Plaintext: