Object

pt.kcry.blake3

RFC4648

Related Doc: package blake3

Permalink

object RFC4648

Implementing RFC 4648 encoding without padding

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

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 base16(data: Array[Byte]): String

    Permalink

    Encode an array as base16 with RFC 4648 Section 8 alphabet

  6. def base16(data: Array[Byte], offset: Int, len: Int): String

    Permalink

    Encode specified part of array as base16 with RFC 4648 Section 8 alphabet

  7. def base16(data: Array[Byte], alphabet: Array[Char]): String

    Permalink

    Encode an array as base16 with specified alphabet

  8. def base16(data: Array[Byte], offset: Int, len: Int, alphabet: Array[Char]): String

    Permalink

    Encode specified part of array as base16 with specified alphabet

  9. val base16_alphabet: Array[Char]

    Permalink

    RFC 4648 Section 8

  10. def base32(data: Array[Byte]): String

    Permalink

    Encode an array as base32 with RFC 4648 Section 6 alphabet

  11. def base32(data: Array[Byte], offset: Int, len: Int): String

    Permalink

    Encode specified part of array as base32 with RFC 4648 Section 6 alphabet

  12. def base32(data: Array[Byte], alphabet: Array[Char]): String

    Permalink

    Encode an array as base32 with specified alphabet

  13. def base32(data: Array[Byte], offset: Int, len: Int, alphabet: Array[Char]): String

    Permalink

    Encode specified part of array as base32 with specified alphabet

  14. val base32_alphabet: Array[Char]

    Permalink

    RFC 4648 Section 6

  15. def base32_hex(data: Array[Byte]): String

    Permalink

    Encode an array as base32 with RFC 4648 Section 7 alphabet

  16. def base32_hex(data: Array[Byte], offset: Int, len: Int): String

    Permalink

    Encode specified part of array as base32 with RFC 4648 Section 7 alphabet

  17. val base32_hex_alphabet: Array[Char]

    Permalink

    RFC 4648 Section 7

  18. def base64(data: Array[Byte]): String

    Permalink

    Encode an array as base64 with RFC 4648 Section 4 alphabet

  19. def base64(data: Array[Byte], offset: Int, len: Int): String

    Permalink

    Encode specified part of array as base64 with RFC 4648 Section 4 alphabet

  20. def base64(data: Array[Byte], alphabet: Array[Char]): String

    Permalink

    Encode an array as base64 with specified alphabet

  21. def base64(data: Array[Byte], offset: Int, len: Int, alphabet: Array[Char]): String

    Permalink

    Encode specified part of array as base64 with specified alphabet

  22. val base64_alphabet: Array[Char]

    Permalink

    RFC 4648 Section 4

  23. def base64_b2c(bytes: Array[Byte], offset: Int, len: Int, alphabet: Array[Char], sb: StringBuilder): Unit

    Permalink
  24. def base64_url(data: Array[Byte]): String

    Permalink

    Encode an array as base64 with RFC 4648 Section 5 alphabet

  25. def base64_url(data: Array[Byte], offset: Int, len: Int): String

    Permalink

    Encode specified part of array as base64 with RFC 4648 Section 5 alphabet

  26. val base64_url_alphabet: Array[Char]

    Permalink

    RFC 4648 Section 5

  27. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped