From 2487aaf56ce8b89071bbd5757d2e6a3aa6ecec33 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 12 Feb 2024 10:08:47 +0200 Subject: Review --- libbutl/base64.hxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libbutl/base64.hxx') diff --git a/libbutl/base64.hxx b/libbutl/base64.hxx index 6f8ef02..a0d1450 100644 --- a/libbutl/base64.hxx +++ b/libbutl/base64.hxx @@ -27,13 +27,13 @@ namespace butl LIBBUTL_SYMEXPORT std::string base64_encode (const std::vector&); - // Encode a stream or a buffer using base64url (RFC 4648), a base64 variant + // Encode a stream or a buffer using base64url (RFC4648), a base64 variant // with different 62nd and 63rd alphabet characters (- and _ instead of ~ - // and .) to make it filesystem safe, and optional padding because the + // and .; to make it filesystem safe) and optional padding because the // padding character `=` would have to be percent-encoded to be safe in - // URLs. This implementation does not output any padding, newlines or any - // other whitespace in order to conform to RFC7519: JSON Web Token (JWT) and - // RFC7515: JSON Web Signature (JWS). + // URLs. This implementation does not output any padding, newlines or any + // other whitespace (which is required, for example, by RFC7519: JSON Web + // Token (JWT) and RFC7515: JSON Web Signature (JWS)). // // Note that base64url decoding has not yet been implemented. // -- cgit v1.1