关于android:密码学-02-Base64

29次阅读

共计 1629 个字符,预计需要花费 5 分钟才能阅读完成。

1. 简述:

Base64 是一种用 64 个字符示意任意二进制数据的办法。它是一种编码,而非加密
A-Z a-z 0-9 + / =

2. 改编

  • 在 url 传输应用的码表中,+ / 被 – _ 代替。因为后端接管到 +,会成为 空字符串。
  • 相似 Hexbin 编码,通过批改码表,能够生成变种 base64

    3. Base64 的利用

    RSA 密钥、加密后的密文、图片等数据中,会有一些不可见字符。间接转成文本传输的话,会有乱码、数据谬误、数据失落等状况呈现,就能够应用 Base64 编码

4. Base64 的代码实现和码表

  • java

    public static void main(String[] args) {
        String name = "横笛";
        byte[] bytes = name.getBytes(StandardCharsets.UTF_8);
        String encode = Base64.getEncoder().encodeToString(bytes);
        byte[]  encode1 = Base64.getEncoder().encode(bytes);
        System.out.println(encode);
        System.out.println(new String(encode1));
    }
  • Android

    String name1 = "横笛";
    //  okio.Base64 encode
    ByteString byteString1 = ByteString.of(name1.getBytes(StandardCharsets.UTF_8));
    String encode1 = byteString1.base64();
    System.out.println("okhttp3:" + encode1);
    // java.util.Base64
    // 这里是因为对 Android 版本有要求 
    if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {String string2 = Base64.getEncoder().encodeToString(name1.getBytes(StandardCharsets.UTF_8));
      byte[] string3 = Base64.getEncoder().encode(name1.getBytes(StandardCharsets.UTF_8));
      System.out.println("java- utils:"+string2);
      System.out.println("java- utils:"+ Arrays.toString(string3));
          }
    // android.util.Base64
    String string4 = android.util.Base64.encodeToString(name1.getBytes(StandardCharsets.UTF_8),0);
    byte[]  string5 = android.util.Base64.encode(name1.getBytes(StandardCharsets.UTF_8),0);
    System.out.println("android.util.Base64:"+string4);
    System.out.println("android.util.Base64:"+new String(string5));

    5. Base64 编码细节

    每个 Base64 字符代表原数据中的 6bit
    Base64 编码后的字符数,是 4 的倍数
    编码的字节数是 3 的倍数时,不须要填充

6. Base64 编码的特点

a) Base64 编码是编码,不是压缩,编码后只会减少字节数
b) 算法可逆, 解码很不便, 不用于私密信息通信
c) 规范的 Base64 每行为 76 个字符,行末增加换行符
d) 加密后的字符串只有 65 种字符, 不可打印字符也可传输
e) 在 Java 层能够通过 hook 对应办法名来疾速定位要害代码
f) 在 so 层能够通过输入输出的数据和码表来确定算法

正文完
 0