summaryrefslogtreecommitdiff
path: root/src/ConversionUtils.scala
blob: 5d014296cfa2dc43fdf634f1ac780a7feb60adb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package main.utils

import ByteUtils.WithBitOpts

object ConversionUtils {
  def hexStr2ByteArr(s: String): Iterator[Byte] =
    padToByte(s).grouped(2).map(byteStr2Byte)

  def byteStr2Byte(str: String): Byte =
    charSeq2Byte(str.toSeq)

  def charSeq2Byte(seq: Seq[Char]): Byte =
    seq.map(octet2nibble).reduce(joinNibbles)

  def joinNibbles(a: Byte, b: Byte): Byte =
    ((a @<< 4) @+ b)

  def padToByte(s: String): String = 
    if (s.length % 2 != 0) s + "0" else s

  def octet2nibble(c: Char): Byte = {
    (c.toLower match {
      case c if c >= 'a' && c <= 'f' =>
        (c - 'a') + 10.toByte
      case c if c >= '0' && c <= '9' =>
        c - '0'
      case _ =>
        throw new IllegalArgumentException(s"Invalid hexadecimal character: $c")
    }).toByte
  }

  def hexStr2Base64String(s: String): String = {
    import io.github.marklister.base64.Base64._

    hexStr2ByteArr(s).toArray.toBase64
  }
}