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; }