docs(keys): use the Nushell key-generation recipe #8
Loading…
Reference in a new issue
No description provided.
Delete branch "fix/MCPWEB-9-nushell-key-recipe"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The base64 key contract work spread
openssl rand -base64 32through the crate, but the house shell is Nushell and the equivalentrandom binary 32 | encode base64needs no external binary. Both emit the same 44-character padded standard-base64 string, so this is a text change with no decoding behavior change.Replaces the recipe in the
decode_master_keyanddecode_session_keydoc comments and base64 failure messages, and in theSessionSigner::from_envmissing-key error. The runtime messages quote the pipeline in single quotes so the pipe cannot read as message punctuation. A new integration test guards the removal: it scans the sources and top-level docs for an OpenSSL recipe and asserts the two base64 failure messages carry the Nushell one.#MCPWEB-9