public final class ByteArrayTools
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
static java.io.ByteArrayOutputStream |
compress(byte[] ba)
Compress the given byte-array to a GZIPOutputStream
|
static java.io.ByteArrayOutputStream |
decompress(byte[] ba)
Decompress the given byte-array as a GZIPInputStream
|
static java.lang.String |
digest(byte[] ba)
Calculates a RIPEMD128Digest from a given byte-array and returns it
encoded on Base64 with UTF-8-format
|
static java.lang.String |
getHashFromBytes(java.lang.String algo,
byte[] bytes)
Calculates a hash in hex for a given byte-array
from a MessageDigest with the specified algorithm
|
public static java.io.ByteArrayOutputStream compress(byte[] ba)
ba
- the byte-array to compresspublic static java.io.ByteArrayOutputStream decompress(byte[] ba)
ba
- the byte-Array to decompresspublic static java.lang.String digest(byte[] ba)
ba
- the byte-array to calculateUnsupportedEncodingException
- will be thrown if UTF-8 isnt supportedpublic static java.lang.String getHashFromBytes(java.lang.String algo, byte[] bytes) throws java.security.NoSuchAlgorithmException
algo
- the algorithm name for the MessageDigestbytes
- the bytes-array to get hash forjava.security.NoSuchAlgorithmException
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.