highmobility / hmkit-utils-java

☕️ HMKit utilities library for Java

Home Page:https://high-mobility.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HMKit Utils

This repository contains some of the more commonly used byte utility methods used our libraries. It also contains a Base64 implementation.

Install

Releases are pushed to mavenCentral. To include hmkit-oem in your project, add to build.gradle:

repositories {
  mavenCentral()
}

dependencies {
  implementation 'com.high-mobility:hmkit-utils:1.4.5'
}

Find the latest version names in mavenCentral

Usage

Convenience methods are in ByteUtils class as static methods. For example you could use

public static String hexFromBytes(byte[] bytes)

and

public static byte[] bytesFromHex(String s)

Base64 encoder/decoder is in Base64.java

About

☕️ HMKit utilities library for Java

https://high-mobility.com/

License:MIT License


Languages

Language:Java 95.4%Language:Kotlin 4.6%