本文整理汇总了Java中org.owasp.esapi.codecs.Base64类的典型用法代码示例。如果您正苦于以下问题:Java Base64类的具体用法?Java Base64怎么用?Java Base64使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Base64类属于org.owasp.esapi.codecs包,在下文中一共展示了Base64类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: decrypt
import org.owasp.esapi.codecs.Base64; //导入依赖的package包/类
@Override
public String decrypt(String cryptedText)
{
String clearText = null;
try
{
CipherText cipherText = CipherText.fromPortableSerializedBytes(Base64.decode(cryptedText));
clearText = ESAPI.encryptor().decrypt(cipherText).toString();
}
catch (EncryptionException e)
{
LOG.error("EsapiEncryptor.decrypt: "+e.getMessage(), e);
}
return clearText;
}
示例2: encrypt
import org.owasp.esapi.codecs.Base64; //导入依赖的package包/类
@Override
public String encrypt(String clearText)
{
String cryptedText = null;
try
{
CipherText cipherText = ESAPI.encryptor().encrypt(new PlainText(clearText));
cryptedText = Base64.encodeBytes(cipherText.asPortableSerializedByteArray());
}
catch (EncryptionException e)
{
LOG.error("EsapiEncryptor.encrypt: "+e.getMessage(), e);
}
return cryptedText;
}
示例3: encodeForBase64
import org.owasp.esapi.codecs.Base64; //导入依赖的package包/类
/**
* {@inheritDoc}
*/
public String encodeForBase64(byte[] input, boolean wrap) {
if ( input == null ) {
return null;
}
int options = 0;
if ( !wrap ) {
options |= Base64.DONT_BREAK_LINES;
}
return Base64.encodeBytes(input, options);
}
示例4: decodeFromBase64
import org.owasp.esapi.codecs.Base64; //导入依赖的package包/类
/**
* {@inheritDoc}
*/
public byte[] decodeFromBase64(String input) throws IOException {
if ( input == null ) {
return null;
}
return Base64.decode( input );
}