org.alephium.serde.RandomBytes.scala Maven / Gradle / Ivy
The newest version!
// Copyright 2018 The Alephium Authors
// This file is part of the alephium project.
//
// The library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the library. If not, see .
package org.alephium.serde
import scala.util.Random
import akka.util.ByteString
import org.alephium.util.{Bytes, Hex, SecureAndSlowRandom}
trait RandomBytes extends Any {
def length: Int
def bytes: ByteString
def last: Byte = bytes(length - 1)
def beforeLast: Byte = {
assume(length >= 2)
bytes(length - 2)
}
override def hashCode(): Int = {
assume(length >= 4)
(bytes(length - 4) & 0xff) << 24 |
(bytes(length - 3) & 0xff) << 16 |
(bytes(length - 2) & 0xff) << 8 |
(bytes(length - 1) & 0xff)
}
override def equals(obj: Any): Boolean =
obj match {
case that: RandomBytes => RandomBytes.equals(this.length, this.bytes, that.length, that.bytes)
case _ => false
}
override def toString: String = {
val hex = Hex.toHexString(bytes)
val name = this.getClass.getSimpleName
s"""$name(hex"$hex")"""
}
def toHexString: String = Hex.toHexString(bytes)
def shortHex: String = toHexString.takeRight(8)
// Only use this when length % 4 == 0
def toRandomIntUnsafe: Int =
bytes.sliding(4, 4).foldLeft(0) { case (acc, subBytes) =>
acc + Bytes.toIntUnsafe(subBytes)
}
}
object RandomBytes {
abstract class Companion[T](val unsafe: ByteString => T, val toBytes: T => ByteString) {
lazy val zero: T = unsafe(ByteString.fromArrayUnsafe(Array.fill[Byte](length)(0)))
lazy val allOne: T = unsafe(ByteString.fromArrayUnsafe(Array.fill[Byte](length)(0xff.toByte)))
def length: Int
def from(bytes: IndexedSeq[Byte]): Option[T] = {
if (bytes.length == length) {
Some(unsafe(ByteString.fromArrayUnsafe(bytes.toArray)))
} else {
None
}
}
def from(bytes: ByteString): Option[T] = {
if (bytes.nonEmpty && bytes.length == length) {
Some(unsafe(bytes))
} else {
None
}
}
def generate: T = {
val xs = Array.ofDim[Byte](length)
Random.nextBytes(xs)
unsafe(ByteString.fromArrayUnsafe(xs))
}
def secureGenerate: T = {
val xs = Array.ofDim[Byte](length)
SecureAndSlowRandom.source.nextBytes(xs)
unsafe(ByteString.fromArrayUnsafe(xs))
}
implicit val serde: Serde[T] = Serde.bytesSerde(length).xmap(unsafe, toBytes)
}
@inline def equals(aLen: Int, a: ByteString, bLen: Int, b: ByteString): Boolean = {
var equal = aLen == bLen
if (equal) {
var index = 0
while (index < aLen && equal) {
equal = a(index) == b(index)
index += 1
}
}
equal
}
}