RFC4648

object RFC4648

Implementing RFC 4648 encoding without padding

class Object
trait Matchable
class Any
RFC4648.type

Value members

Concrete methods

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

Encode specified part of array as base16 with specified alphabet

Encode specified part of array as base16 with specified alphabet

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

Encode an array as base16 with specified alphabet

Encode an array as base16 with specified alphabet

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

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

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

def base16(data: Array[Byte]): String

Encode an array as base16 with RFC 4648 Section 8 alphabet

Encode an array as base16 with RFC 4648 Section 8 alphabet

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

Encode specified part of array as base32 with specified alphabet

Encode specified part of array as base32 with specified alphabet

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

Encode an array as base32 with specified alphabet

Encode an array as base32 with specified alphabet

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

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

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

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

Encode an array as base32 with RFC 4648 Section 6 alphabet

Encode an array as base32 with RFC 4648 Section 6 alphabet

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

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

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

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

Encode an array as base32 with RFC 4648 Section 7 alphabet

Encode an array as base32 with RFC 4648 Section 7 alphabet

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

Encode specified part of array as base64 with specified alphabet

Encode specified part of array as base64 with specified alphabet

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

Encode an array as base64 with specified alphabet

Encode an array as base64 with specified alphabet

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

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

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

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

Encode an array as base64 with RFC 4648 Section 4 alphabet

Encode an array as base64 with RFC 4648 Section 4 alphabet

def base64_b2c(bytes: Array[Byte], offset: Int, len: Int, alphabet: Array[Char], sb: StringBuilder): Unit
def base64_url(data: Array[Byte], offset: Int, len: Int): String

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

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

def base64_url(data: Array[Byte]): String

Encode an array as base64 with RFC 4648 Section 5 alphabet

Encode an array as base64 with RFC 4648 Section 5 alphabet

Concrete fields

val base16_alphabet: Array[Char]

RFC 4648 Section 8

RFC 4648 Section 8

val base32_alphabet: Array[Char]

RFC 4648 Section 6

RFC 4648 Section 6

val base32_hex_alphabet: Array[Char]

RFC 4648 Section 7

RFC 4648 Section 7

val base64_alphabet: Array[Char]

RFC 4648 Section 4

RFC 4648 Section 4

val base64_url_alphabet: Array[Char]

RFC 4648 Section 5

RFC 4648 Section 5