Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
package com.alipay.global.api.base64;


import org.apache.commons.codec.binary.Base64;

/**
* Base64 encoding and decoding using Apache Commons Codec
* You can also customize the base64 tool. See the end of the README.
* compatible JDK 6, 8, 11+
* Base64 encoding and decoding using Apache Commons Codec You can also customize the base64 tool.
* See the end of the README. compatible JDK 6, 8, 11+
*/
public class DefaultBase64Encryptor implements Base64Encryptor {

Expand All @@ -19,5 +17,4 @@ public String encodeToString(byte[] src) {
public byte[] decode(String src) {
return Base64.decodeBase64(src);
}

}
}