All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ms.security.binary.base64.Base64InputStream Maven / Gradle / Ivy

The newest version!
/*
 * @MS 2022-12-13
 * Copyright (c) 2001-2023 萌森
 * 保留所有权利
 * 本软件为萌森工作室所有及包含机密信息,须遵守其相关许可证条款进行使用。
 * Copyright (c) 2001-2023 Meng Sen
 * All rights reserved
 * This software is owned by Mengsen Studio and contains confidential information, and must be used in accordance with its relevant license terms.
 * Website:https://qyg2297248353.top
 */

package com.ms.security.binary.base64;

import java.io.InputStream;

/**
 * Base64 编码解码
 *
 * @author qyg2297248353
 */
public class Base64InputStream extends org.apache.commons.codec.binary.Base64InputStream {

    public Base64InputStream(InputStream in) {
        super(in);
    }

    public Base64InputStream(InputStream in, boolean doEncode) {
        super(in, doEncode);
    }

    public Base64InputStream(InputStream in, boolean doEncode, int lineLength, byte[] lineSeparator) {
        super(in, doEncode, lineLength, lineSeparator);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy