1.3.0 release #7

Merged
Infendro merged 13 commits from develop into main 2026-01-29 16:46:03 +00:00
Showing only changes of commit a347bd617c - Show all commits

View File

@@ -11,7 +11,7 @@ open class StreamEncoding(
private val padding: Byte? = null,
) : Encoding(alphabet) {
init {
require(base % 2 == 0)
require(base and (base - 1) == 0)
}
override fun encode(bytes: ByteArray): ByteArray {