com.netease.cloud.util.Base64Codec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nos-sdk-java-publiccloud Show documentation
Show all versions of nos-sdk-java-publiccloud Show documentation
nos java sdk to the Central Repository
The newest version!
package com.netease.cloud.util;
import org.apache.commons.codec.binary.Base64;
class Base64Codec implements Codec {
@Override
public byte[] encode(byte[] src) {
return Base64.encodeBase64(src, false);
}
@Override
public byte[] decode(byte[] src, final int length) {
return Base64.decodeBase64(src);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy