Trait

ky.korins.blake3

Hasher

Related Doc: package blake3

Permalink

trait Hasher extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Hasher
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def done(out: ByteBuffer): Unit

    Permalink

    Calculate a hash into specified OutputStream with specified output length in bytes

  2. abstract def done(out: OutputStream, len: Int): Unit

    Permalink

    Calculate a hash into specified OutputStream with specified output length in bytes

  3. abstract def done(): Byte

    Permalink

    Calculate a hash as single byte

  4. abstract def done(out: Array[Byte], offset: Int, len: Int): Unit

    Permalink

    Calculate a hash into specified part of array

  5. abstract def done(out: Array[Byte]): Unit

    Permalink

    Calculate a hash into specified byte array

  6. abstract def doneInt(): Int

    Permalink

    Calculate a hash as single int

  7. abstract def doneLong(): Long

    Permalink

    Calculate a hash as single long

  8. abstract def doneShort(): Short

    Permalink

    Calculate a hash as single short

  9. abstract def update(input: ByteBuffer): Hasher

    Permalink

    Updates a hasher from specified ByteBuffer, returns the same hasher

  10. abstract def update(input: InputStream): Hasher

    Permalink

    Updates a hasher from specified InputStream, returns the same hasher

    Updates a hasher from specified InputStream, returns the same hasher

    It reads input until it returns -1

  11. abstract def update(input: String): Hasher

    Permalink

    Updates a hasher by specified string, returns the same hasher

  12. abstract def update(input: Long): Hasher

    Permalink

    Updates a hasher by specified short, returns the same hasher

  13. abstract def update(input: Int): Hasher

    Permalink

    Updates a hasher by specified short, returns the same hasher

  14. abstract def update(input: Short): Hasher

    Permalink

    Updates a hasher by specified short, returns the same hasher

  15. abstract def update(input: Byte): Hasher

    Permalink

    Updates a hasher by specified byte, returns the same hasher

  16. abstract def update(input: Array[Byte], offset: Int, len: Int): Hasher

    Permalink

    Updates a hasher by specified part of provided bytes, returns the same hasher

  17. abstract def update(input: Array[Byte]): Hasher

    Permalink

    Updates a hasher by provided bytes, returns the same hasher

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def done(len: Int): Array[Byte]

    Permalink

    Create a new byte array of specified length and calculate a hash into this array

  7. def doneBase16(len: Int): String

    Permalink

    Create a base16 representative of calculated hash for specified length

  8. def doneBase32(len: Int): String

    Permalink

    Create a base32 representative of calculated hash for specified length

  9. def doneBase32Hex(len: Int): String

    Permalink

    Create a base32 hex-compatibly representative of calculated hash for specified length

  10. def doneBase64(len: Int): String

    Permalink

    Create a base64 representative of calculated hash for specified length

  11. def doneBase64Url(len: Int): String

    Permalink

    Create a base64 URL-safe representative of calculated hash for specified length

  12. def doneBigInt(N: BigInt): BigInt

    Permalink

    Calculate a hash and return it as positive BigInt (mod N)

  13. def doneBigInt(bitLength: Int): BigInt

    Permalink

    Calculate a hash and return it as positive BigInt with specified length in bits

    Calculate a hash and return it as positive BigInt with specified length in bits

    Annotations
    @throws( classOf[IllegalArgumentException] )
  14. def doneHex(resultLength: Int): String

    Permalink

    Calculate a hash and return as hex encoded string with specified output length in characters

    Calculate a hash and return as hex encoded string with specified output length in characters

    Annotations
    @throws( classOf[IllegalArgumentException] )
  15. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  19. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  20. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  21. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  25. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped