Paste a secret, get a link, send it. The first person to open it and press
Reveal sees the secret; the link dies at that moment. The recipient needs a
browser and nothing else — no account, no client, no installed tooling.
The server cannot read what it stores. AES-256-GCM happens in the browser and
the key lives in the URL fragment, which browsers never transmit, so hushd
holds ciphertext and no key material. That is a property of where the key sits
rather than a promise about our conduct, which is why there is deliberately no
endpoint accepting a plaintext secret and no server-side-encryption fallback:
two guarantees behind one URL would be worse than one honest guarantee.
Three decisions carry the design:
* GET /s/{id} touches NO storage, not even to check existence. Slack, Teams,
WhatsApp, iMessage and Outlook Safe Links all fetch a URL before a human
sees it, so destroying on GET would destroy most secrets in transit and the
recipient's "already used" would be indistinguishable from interception.
Only POST /reveal consumes. Bot user-agent detection is an arms race;
removing the side effect from GET is not. Pinned by
TestGettingTheRevealPageNeverConsumesTheSecret.
* Destruction is one Redis GETDEL, which is atomic. GET-then-DEL has a window
where two simultaneous readers both win, and for a one-time secret that
window is the product. The store contract demands atomicity and the same
concurrency test runs against both implementations.
* Missing, already-revealed, expired and evicted are ONE indistinguishable
410. Separating them would confirm to a prober that a given link was real.
The secret id IS the capability, so secret.ID is a struct whose every
accidental path — %v, %s, String(), slog, json.Marshal — emits a redacted
handle or refuses, and the raw value needs an explicit Value(). The first
version tried to prevent leaks by implementing no String() at all; its own test
caught that Go's fmt prints unexported fields anyway, so forbidding the method
had removed the control rather than the leak.
Operationally: structured JSON on stdout in the fleet's wire format, which
Vector already collects with no annotation; six hush_* metrics on the chassis
registry with no id, IP or path in any label; five alert rules wired into
vmalert. The public Ingress enumerates /, /s/ and /api/ so /metrics, /healthz
and /readyz share the port but are unreachable from the internet — no
basic-auth middleware to maintain and get wrong.
Dependencies are vendored because go-chassis is private: the Woodpecker test
step and the in-cluster Kaniko build both run -mod=vendor with GOPROXY=off and
hold no git credential.
cmd/hush-mcp is a stdio MCP server doing the same client-side crypto locally,
so using hush from an agent preserves the same guarantee as using it from a
browser.
203 lines
5.9 KiB
Go
203 lines
5.9 KiB
Go
// Copyright 2019 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Package protoiface contains types referenced or implemented by messages.
|
|
//
|
|
// WARNING: This package should only be imported by message implementations.
|
|
// The functionality found in this package should be accessed through
|
|
// higher-level abstractions provided by the proto package.
|
|
package protoiface
|
|
|
|
import (
|
|
"google.golang.org/protobuf/internal/pragma"
|
|
"google.golang.org/protobuf/reflect/protoreflect"
|
|
)
|
|
|
|
// Methods is a set of optional fast-path implementations of various operations.
|
|
type Methods = struct {
|
|
pragma.NoUnkeyedLiterals
|
|
|
|
// Flags indicate support for optional features.
|
|
Flags SupportFlags
|
|
|
|
// Size returns the size in bytes of the wire-format encoding of a message.
|
|
// Marshal must be provided if a custom Size is provided.
|
|
Size func(SizeInput) SizeOutput
|
|
|
|
// Marshal formats a message in the wire-format encoding to the provided buffer.
|
|
// Size should be provided if a custom Marshal is provided.
|
|
// It must not return an error for a partial message.
|
|
Marshal func(MarshalInput) (MarshalOutput, error)
|
|
|
|
// Unmarshal parses the wire-format encoding and merges the result into a message.
|
|
// It must not reset the target message or return an error for a partial message.
|
|
Unmarshal func(UnmarshalInput) (UnmarshalOutput, error)
|
|
|
|
// Merge merges the contents of a source message into a destination message.
|
|
Merge func(MergeInput) MergeOutput
|
|
|
|
// CheckInitialized returns an error if any required fields in the message are not set.
|
|
CheckInitialized func(CheckInitializedInput) (CheckInitializedOutput, error)
|
|
|
|
// Equal compares two messages and returns EqualOutput.Equal == true if they are equal.
|
|
Equal func(EqualInput) EqualOutput
|
|
}
|
|
|
|
// SupportFlags indicate support for optional features.
|
|
type SupportFlags = uint64
|
|
|
|
const (
|
|
// SupportMarshalDeterministic reports whether MarshalOptions.Deterministic is supported.
|
|
SupportMarshalDeterministic SupportFlags = 1 << iota
|
|
|
|
// SupportUnmarshalDiscardUnknown reports whether UnmarshalOptions.DiscardUnknown is supported.
|
|
SupportUnmarshalDiscardUnknown
|
|
)
|
|
|
|
// SizeInput is input to the Size method.
|
|
type SizeInput = struct {
|
|
pragma.NoUnkeyedLiterals
|
|
|
|
Message protoreflect.Message
|
|
Flags MarshalInputFlags
|
|
}
|
|
|
|
// SizeOutput is output from the Size method.
|
|
type SizeOutput = struct {
|
|
pragma.NoUnkeyedLiterals
|
|
|
|
Size int
|
|
}
|
|
|
|
// MarshalInput is input to the Marshal method.
|
|
type MarshalInput = struct {
|
|
pragma.NoUnkeyedLiterals
|
|
|
|
Message protoreflect.Message
|
|
Buf []byte // output is appended to this buffer
|
|
Flags MarshalInputFlags
|
|
}
|
|
|
|
// MarshalOutput is output from the Marshal method.
|
|
type MarshalOutput = struct {
|
|
pragma.NoUnkeyedLiterals
|
|
|
|
Buf []byte // contains marshaled message
|
|
}
|
|
|
|
// MarshalInputFlags configure the marshaler.
|
|
// Most flags correspond to fields in proto.MarshalOptions.
|
|
type MarshalInputFlags = uint8
|
|
|
|
const (
|
|
MarshalDeterministic MarshalInputFlags = 1 << iota
|
|
MarshalUseCachedSize
|
|
)
|
|
|
|
// UnmarshalInput is input to the Unmarshal method.
|
|
type UnmarshalInput = struct {
|
|
pragma.NoUnkeyedLiterals
|
|
|
|
Message protoreflect.Message
|
|
Buf []byte // input buffer
|
|
Flags UnmarshalInputFlags
|
|
Resolver interface {
|
|
FindExtensionByName(field protoreflect.FullName) (protoreflect.ExtensionType, error)
|
|
FindExtensionByNumber(message protoreflect.FullName, field protoreflect.FieldNumber) (protoreflect.ExtensionType, error)
|
|
}
|
|
Depth int
|
|
}
|
|
|
|
// UnmarshalOutput is output from the Unmarshal method.
|
|
type UnmarshalOutput = struct {
|
|
pragma.NoUnkeyedLiterals
|
|
|
|
Flags UnmarshalOutputFlags
|
|
}
|
|
|
|
// UnmarshalInputFlags configure the unmarshaler.
|
|
// Most flags correspond to fields in proto.UnmarshalOptions.
|
|
type UnmarshalInputFlags = uint8
|
|
|
|
const (
|
|
UnmarshalDiscardUnknown UnmarshalInputFlags = 1 << iota
|
|
|
|
// UnmarshalAliasBuffer permits unmarshal operations to alias the input buffer.
|
|
// The unmarshaller must not modify the contents of the buffer.
|
|
UnmarshalAliasBuffer
|
|
|
|
// UnmarshalValidated indicates that validation has already been
|
|
// performed on the input buffer.
|
|
UnmarshalValidated
|
|
|
|
// UnmarshalCheckRequired is set if this unmarshal operation ultimately will care if required fields are
|
|
// initialized.
|
|
UnmarshalCheckRequired
|
|
|
|
// UnmarshalNoLazyDecoding is set if this unmarshal operation should not use
|
|
// lazy decoding, even when otherwise available.
|
|
UnmarshalNoLazyDecoding
|
|
)
|
|
|
|
// UnmarshalOutputFlags are output from the Unmarshal method.
|
|
type UnmarshalOutputFlags = uint8
|
|
|
|
const (
|
|
// UnmarshalInitialized may be set on return if all required fields are known to be set.
|
|
// If unset, then it does not necessarily indicate that the message is uninitialized,
|
|
// only that its status could not be confirmed.
|
|
UnmarshalInitialized UnmarshalOutputFlags = 1 << iota
|
|
)
|
|
|
|
// MergeInput is input to the Merge method.
|
|
type MergeInput = struct {
|
|
pragma.NoUnkeyedLiterals
|
|
|
|
Source protoreflect.Message
|
|
Destination protoreflect.Message
|
|
}
|
|
|
|
// MergeOutput is output from the Merge method.
|
|
type MergeOutput = struct {
|
|
pragma.NoUnkeyedLiterals
|
|
|
|
Flags MergeOutputFlags
|
|
}
|
|
|
|
// MergeOutputFlags are output from the Merge method.
|
|
type MergeOutputFlags = uint8
|
|
|
|
const (
|
|
// MergeComplete reports whether the merge was performed.
|
|
// If unset, the merger must have made no changes to the destination.
|
|
MergeComplete MergeOutputFlags = 1 << iota
|
|
)
|
|
|
|
// CheckInitializedInput is input to the CheckInitialized method.
|
|
type CheckInitializedInput = struct {
|
|
pragma.NoUnkeyedLiterals
|
|
|
|
Message protoreflect.Message
|
|
}
|
|
|
|
// CheckInitializedOutput is output from the CheckInitialized method.
|
|
type CheckInitializedOutput = struct {
|
|
pragma.NoUnkeyedLiterals
|
|
}
|
|
|
|
// EqualInput is input to the Equal method.
|
|
type EqualInput = struct {
|
|
pragma.NoUnkeyedLiterals
|
|
|
|
MessageA protoreflect.Message
|
|
MessageB protoreflect.Message
|
|
}
|
|
|
|
// EqualOutput is output from the Equal method.
|
|
type EqualOutput = struct {
|
|
pragma.NoUnkeyedLiterals
|
|
|
|
Equal bool
|
|
}
|