8 lines
382 B
Go
8 lines
382 B
Go
// Package ficha issues, validates, and revokes opaque encrypted tokens
|
|
// carrying consumer-defined permissions. Tokens are sealed with
|
|
// XChaCha20-Poly1305 authenticated encryption.
|
|
//
|
|
// Persistence (revocation storage, key storage) is intentionally not
|
|
// part of this package. Consumers provide their own implementations
|
|
// of the small interfaces defined here.
|
|
package ficha
|