Packages

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

    Calculate a hash as single byte

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

    Calculate a hash into specified part of array

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

    Calculate a hash into specified byte array

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

    Updates a hasher by specified string, returns the same hasher

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

    Updates a hasher by specified byte, returns the same hasher

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

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

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

    Updates a hasher by provided bytes, returns the same hasher

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  6. def done(len: Int): Array[Byte]

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

  7. def doneBase16(len: Int): String

    Create a base16 representative of calculated hash for specified length

  8. def doneBase32(len: Int): String

    Create a base32 representative of calculated hash for specified length

  9. def doneBase32Hex(len: Int): String

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

  10. def doneBase64(len: Int): String

    Create a base64 representative of calculated hash for specified length

  11. def doneBase64Url(len: Int): String

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

  12. def doneBigInt(bitLength: Int): BigInt

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

  13. def doneHex(resultLength: Int): String

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

  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped