From 8d296361c1f60742d9c6a970fc8f645aae300e89 Mon Sep 17 00:00:00 2001 From: Kayce Basques Date: Thu, 6 Jun 2024 21:30:57 +0000 Subject: [PATCH] pw_base64: Add module metadata MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: 339741960 Change-Id: I31fc6a9972236ebbb8179362d5d5264263f0b3ef Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/214540 Lint: Lint 🤖 Reviewed-by: Wyatt Hepler Commit-Queue: Kayce Basques --- docs/module_metadata.json | 8 ++++++++ pw_base64/docs.rst | 3 +++ 2 files changed, 11 insertions(+) diff --git a/docs/module_metadata.json b/docs/module_metadata.json index 555189a8c6..d294ae651d 100644 --- a/docs/module_metadata.json +++ b/docs/module_metadata.json @@ -43,6 +43,14 @@ "C++17" ] }, + "pw_base64": { + "tagline": "Base64 encoding, decoding, and validating", + "status": "stable", + "languages": [ + "C", + "C++" + ] + }, "pw_bloat": { "tagline": "Utilities for generating binary size reports", "status": "stable", diff --git a/pw_base64/docs.rst b/pw_base64/docs.rst index 8331c802ba..4b583e5f99 100644 --- a/pw_base64/docs.rst +++ b/pw_base64/docs.rst @@ -3,6 +3,9 @@ ========= pw_base64 ========= +.. pigweed-module:: + :name: pw_base64 + This module provides functions for encoding, decoding, and validating Base64 data as specified by `RFC 3548 `_ and `RFC 4648 `_.