Package akka.http.impl.model.parser
Class Base64Parsing$
- java.lang.Object
-
- akka.http.impl.model.parser.Base64Parsing$
-
public class Base64Parsing$ extends java.lang.Object
INTERNAL API
-
-
Field Summary
Fields Modifier and Type Field Description static Base64Parsing$
MODULE$
Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description Base64Parsing$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description scala.Function1<char[],byte[]>
base64UrlStringDecoder()
as described in RFC4648 5. - https://tools.ietf.org/html/rfc4648#section-5akka.parboiled2.CharPredicate.MaskBased
customAlphabet()
scala.Function1<char[],byte[]>
customBlockDecoder()
scala.Function1<char[],byte[]>
customStringDecoder()
byte[]
decodeBlock(akka.parboiled2.util.Base64 codec, char[] chars)
byte[]
decodeString(akka.parboiled2.util.Base64 codec, char[] chars)
akka.parboiled2.CharPredicate.MaskBased
rfc2045Alphabet()
scala.Function1<char[],byte[]>
rfc2045BlockDecoder()
scala.Function1<char[],byte[]>
rfc2045StringDecoder()
-
-
-
Field Detail
-
MODULE$
public static final Base64Parsing$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
rfc2045Alphabet
public akka.parboiled2.CharPredicate.MaskBased rfc2045Alphabet()
-
customAlphabet
public akka.parboiled2.CharPredicate.MaskBased customAlphabet()
-
rfc2045StringDecoder
public scala.Function1<char[],byte[]> rfc2045StringDecoder()
-
customStringDecoder
public scala.Function1<char[],byte[]> customStringDecoder()
-
rfc2045BlockDecoder
public scala.Function1<char[],byte[]> rfc2045BlockDecoder()
-
customBlockDecoder
public scala.Function1<char[],byte[]> customBlockDecoder()
-
base64UrlStringDecoder
public scala.Function1<char[],byte[]> base64UrlStringDecoder()
as described in RFC4648 5. - https://tools.ietf.org/html/rfc4648#section-5
-
decodeString
public byte[] decodeString(akka.parboiled2.util.Base64 codec, char[] chars)
-
decodeBlock
public byte[] decodeBlock(akka.parboiled2.util.Base64 codec, char[] chars)
-
-