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(): Byte

    Permalink

    Calculate a hash as single byte

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

    Permalink

    Calculate a hash into specified part of array

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

    Permalink

    Calculate a hash into specified byte array

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

    Permalink

    Updates a hasher by specified string, returns the same hasher

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

    Permalink

    Updates a hasher by specified byte, returns the same hasher

  6. 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

  7. 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
    @HotSpotIntrinsicCandidate() @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(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] )
  13. 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] )
  14. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  16. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  17. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  18. final def isInstanceOf[T0]: Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  21. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  22. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  24. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(): Unit

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

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped