All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.savl.ripple.encodings.common.B64 Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package com.savl.ripple.encodings.common;

import org.bouncycastle.util.encoders.Base64;

public class B64 {
    public static String toString(byte[] bytes) {
        return Base64.toBase64String(bytes);
    }
    public static byte[] decode(String string) {
        return Base64.decode(string);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy