Lines Matching refs:base64
3 * base64.c - RFC4648-compliant base64 encoding
8 * (which are using the URL-safe base64 encoding),
16 #include <linux/base64.h>
22 * base64_encode() - base64-encode some binary data
25 * @dst: (output) the base64-encoded string. Not NUL-terminated.
27 * Encodes data using base64 encoding, i.e. the "Base 64 Encoding" specified
30 * Return: the length of the resulting base64-encoded string in bytes.
60 * base64_decode() - base64-decode a string
65 * Decodes a string using base64 encoding, i.e. the "Base 64 Encoding"
71 * or -1 if the string isn't a valid base64 string.