Base64编码在线工具
关于Base64编码在线工具:
这个在线Base64编码工具可以帮助您将一个输入字符串转换成Base64编码格式的字符串.
Base64编码能加密我的数据吗?
不能.Base64只能更改字符串的外观,不需要密码来解码Base64字符串.
更多关于Base64的链接:
RFC 3548: https://tools.ietf.org/html/rfc3548.html
Python中的Base64: https://docs.python.org/2/library/base64.html
Java中的Base64: https://docs.oracle.com/javase/8/docs/api/java/util/Base64.html
用Python编码字符串的Base64 (用 package base64):
import base64 def base64_encode(str): return base64.b64encode(str.encode())
用Java编码字符串的Base64 (用 package MessageDigest):
import java.util.Base64; public String encode(String str) { byte[] encodedBytes = Base64.getEncode().encode(str.getBytes()); String text = new String(encodedBytes); return text; }