object Alphabets
- Alphabetic
- By Inheritance
- Alphabets
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- sealed trait Base64Base extends Base64Alphabet
-
sealed
trait
Base64UrlBase extends Base64Alphabet
Base 64 alphabet, with padding, as defined by RF4648 section 5.
Base 64 alphabet, with padding, as defined by RF4648 section 5. Whitespace is ignored.
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
object
Base32 extends Base32Alphabet
Base 32 alphabet, with padding, as defined by RF4648 section 4.
Base 32 alphabet, with padding, as defined by RF4648 section 4. Whitespace is ignored.
-
object
Base32Crockford extends Base32Alphabet
Base 32 Crockford alphabet as defined by https://www.crockford.com/base32.html.
Base 32 Crockford alphabet as defined by https://www.crockford.com/base32.html. Whitespace and hyphen is ignored.
-
object
Base58 extends Alphabet
Base 58 alphabet as defined by https://en.bitcoin.it/wiki/Base58Check_encoding#Base58_symbol_chart.
Base 58 alphabet as defined by https://en.bitcoin.it/wiki/Base58Check_encoding#Base58_symbol_chart. IPFS hashes uses the same order.
-
object
Base64 extends Base64Base with PaddedAlphabet
Base 64 alphabet, with padding, as defined by RF4648 section 4.
Base 64 alphabet, with padding, as defined by RF4648 section 4. Whitespace is ignored.
-
object
Base64NoPad extends Base64Base
Base 64 alphabet, without padding, as defined by RF4648 section 4.
Base 64 alphabet, without padding, as defined by RF4648 section 4. Whitespace is ignored.
- object Base64Url extends Base64UrlBase
- object Base64UrlNoPad extends Base64UrlBase
-
object
Binary extends BinaryAlphabet
Binary alphabet that uses
{0, 1}and allows whitespace and underscores for separation. -
object
HexLowercase extends LenientHex
Base 16 alphabet that uses
{0-9, a-f}.Base 16 alphabet that uses
{0-9, a-f}. Whitespace and underscores are ignored. -
object
HexUppercase extends LenientHex
Base 16 alphabet that uses
{0-9, A-F}.Base 16 alphabet that uses
{0-9, A-F}. Whitespace and underscores are ignored. -
object
Truthy extends BinaryAlphabet
Binary alphabet that uses
{t, f}and allows whitespace and underscores for separation.