aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/util/uuid.kt
blob: cccfdd264e5d8acfe0da0942751e6efc6b4ee2aa (plain)
1
2
3
4
5
6
7
8
9
10
package moe.nea.firmament.util

import java.math.BigInteger
import java.util.UUID

fun parseDashlessUUID(dashlessUuid: String): UUID {
	val most = BigInteger(dashlessUuid.substring(0, 16), 16)
	val least = BigInteger(dashlessUuid.substring(16, 32), 16)
	return UUID(most.toLong(), least.toLong())
}