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

com.baomidou.kisso.common.encrypt.base64.UrlBase64Encoder Maven / Gradle / Ivy

There is a newer version: 3.9.1
Show newest version
package com.baomidou.kisso.common.encrypt.base64;

public class UrlBase64Encoder extends Base64Encoder {

    public UrlBase64Encoder() {
        encodingTable[encodingTable.length - 2] = (byte) '-';
        encodingTable[encodingTable.length - 1] = (byte) '_';
        padding = (byte) '.';
        // we must re-create the decoding table with the new encoded values.
        initialiseDecodingTable();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy