From 911384d74fdb97a8b016ade20f1f8fc950a5df78 Mon Sep 17 00:00:00 2001 From: Mejlad Alsubaie Date: Sat, 13 Jun 2026 13:52:59 +0300 Subject: [PATCH] Add Quart-Enciphers to extensions list Add Quart-Enciphers to the list of Quart extensions. Quart-Enciphers is a session interface that replaces the default signed cookie with a fully encrypted one using the enciphers library (Rust-powered, 10x faster than Fernet). - PyPI: https://pypi.org/project/quart-enciphers/ - GitHub: https://github.com/mjlad/quart-enciphers - License: Apache-2.0 --- docs/how_to_guides/quart_extensions.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/how_to_guides/quart_extensions.rst b/docs/how_to_guides/quart_extensions.rst index 8b54da2..f531fe8 100644 --- a/docs/how_to_guides/quart_extensions.rst +++ b/docs/how_to_guides/quart_extensions.rst @@ -52,6 +52,8 @@ here, - `Quart-LibreTranslate `_ Simple integration to use LibreTranslate with your Quart app. - `Quart-Uploads `_ File upload handling for Quart. +`Quart-Enciphers `_ + Encrypted cookie session using enciphers. Supporting sync code in a Quart Extension -----------------------------------------