Class Base64Util

java.lang.Object
com.webauthn4j.util.Base64Util

public class Base64Util extends Object
A Utility class for base64 manipulation
  • Method Summary

    Modifier and Type
    Method
    Description
    static @org.jetbrains.annotations.NotNull byte[]
    decode(@org.jetbrains.annotations.NotNull byte[] source)
     
    static @org.jetbrains.annotations.NotNull byte[]
    decode(@NotNull String source)
     
    static @org.jetbrains.annotations.NotNull byte[]
    encode(@org.jetbrains.annotations.NotNull byte[] source)
     
    static @NotNull String
    encodeToString(@org.jetbrains.annotations.NotNull byte[] source)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • decode

      @NotNull public static @org.jetbrains.annotations.NotNull byte[] decode(@NotNull @NotNull String source)
    • decode

      @NotNull public static @org.jetbrains.annotations.NotNull byte[] decode(@NotNull @org.jetbrains.annotations.NotNull byte[] source)
    • encode

      @NotNull public static @org.jetbrains.annotations.NotNull byte[] encode(@NotNull @org.jetbrains.annotations.NotNull byte[] source)
    • encodeToString

      @NotNull public static @NotNull String encodeToString(@NotNull @org.jetbrains.annotations.NotNull byte[] source)