18: Add a codec class for Base58

This commit is contained in:
2026-06-26 20:42:22 +02:00
parent 28c1de2ed4
commit b78c95e7ae
@@ -0,0 +1,5 @@
package com.r35157.libs.codec;
public interface Base58Codec {
String encode(byte[] input);
}