类 Base64Decode

java.lang.Object
com.alibaba.nacos.plugin.auth.impl.utils.Base64Decode

public class Base64Decode extends Object
Base64Decoder.
作者:
xYohn
  • 字段详细资料

    • BASE64_ALPHABET

      private static final char[] BASE64_ALPHABET
    • BASE64_IALPHABET

      private static final int[] BASE64_IALPHABET
    • IALPHABET_MAX_INDEX

      private static final int IALPHABET_MAX_INDEX
    • IALPHABET

      private static final int[] IALPHABET
  • 构造器详细资料

    • Base64Decode

      public Base64Decode()
  • 方法详细资料

    • decode

      public static byte[] decode(String input)
      Decodes a Base64 encoded String into a newly-allocated byte array using the Base64 encoding scheme.
      参数:
      input - the string to decode
      返回:
      a byte array containing binary data
    • ctoi

      private static int ctoi(char c)