mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-12-28 16:56:26 +00:00
a116e1cdc6
Add RFC4648-compliant base64 encoding and decoding routines, based on the base64url encoding in fs/crypto/fname.c. Signed-off-by: Hannes Reinecke <hare@suse.de> Reviewed-by: Himanshu Madhani <himanshu.madhani@oracle.com> Reviewed-by: Sagi Grimberg <sagi@grimberg.me> Cc: Eric Biggers <ebiggers@kernel.org> Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jens Axboe <axboe@kernel.dk>
17 lines
370 B
C
17 lines
370 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* base64 encoding, lifted from fs/crypto/fname.c.
|
|
*/
|
|
|
|
#ifndef _LINUX_BASE64_H
|
|
#define _LINUX_BASE64_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
#define BASE64_CHARS(nbytes) DIV_ROUND_UP((nbytes) * 4, 3)
|
|
|
|
int base64_encode(const u8 *src, int len, char *dst);
|
|
int base64_decode(const char *src, int len, u8 *dst);
|
|
|
|
#endif /* _LINUX_BASE64_H */
|