zoukankan      html  css  js  c++  java
  • Base64加密

    package com.kaishengit.security;
    
    import java.util.Base64;
    
    /**
     * base64位的加密,不算做是正常的加密
     * @author kdj
     * 创建时间:2018年4月11日
     */
    public class Base64Test {
    
        
        /**
         * 应用场景:可以用于url的转码
         */
        
        
        private static String securityStr = "测试";
        
        public static void main(String[] args) {
            jdkBase64();
            commonBase64();
            bouncyBase64();
        }
        
        /**
         * jdk自带
         */
        public static void jdkBase64(){
            byte[] encode = Base64.getEncoder().encode(securityStr.getBytes());
            String encodeStr = new String(encode);
            System.out.println("encode:"+encodeStr);
            
            byte[] decode = Base64.getDecoder().decode(encodeStr);
            String decodeStr = new String(decode);
            System.out.println("decode:"+decodeStr);
        }
        
        /**
         * common自带
         */
        public static void commonBase64(){
            byte[] encode = org.apache.commons.codec.binary.Base64.encodeBase64(securityStr.getBytes());
            String encodeStr = new String(encode);
            System.out.println("encode:"+encodeStr);
            
            byte[] decode = org.apache.commons.codec.binary.Base64.decodeBase64(encodeStr);
            String decodeStr = new String(decode);
            System.out.println("decode:"+decodeStr);
        }
        
        /**
         * bouncy自带
         */
        public static void bouncyBase64(){
            byte[] encode = org.bouncycastle.util.encoders.Base64.encode(securityStr.getBytes());
            String encodeStr = new String(encode);
            System.out.println("encode:"+encodeStr);
            
            byte[] decode = org.bouncycastle.util.encoders.Base64.decode(encodeStr);
            String decodeStr = new String(decode);
            System.out.println("decode:"+decodeStr);
        }
        
        
    }

    列出来三种实现方式,JDK,Bouncy,Common

  • 相关阅读:
    squid代理
    日志、远程日志、日志轮询、DHCP
    环境变量、进程
    rpm、yum
    filesystem安装后产生所有目录
    vRO 添加已有磁盘到VM
    python笔记-8(线程,进程,协程,io多路复用)
    python笔记-7(面向对象、类、面向对象进阶、异常处理、断言、反射、网络(套接字)编程、)
    python3 封装
    python3 继承
  • 原文地址:https://www.cnblogs.com/fucktom/p/8853977.html
Copyright © 2011-2022 走看看