moby--moby/vendor/github.com/fernet/fernet-go
Sebastiaan van Stijn 27749659d5
Bump SwarmKit to 831df679a0b8a21b4dccd5791667d030642de7ff
Changes included:

- Ingress network should not be attachable
- [manager/state] Add fernet as an option for raft encryption
- Log GRPC server errors
- Log leadership changes at manager level
- [state/raft] Increase raft ElectionTick to 10xHeartbeatTick
- Remove the containerd executor
- agent: backoff session when no remotes are available
- [ca/manager] Remove root CA key encryption support entirely
- Fix agent logging race (fixes https://github.com/docker/swarmkit/issues/2576)
- Adding logic to restore networks in order

Also adds github.com/fernet/fernet-go as a new dependency

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2018-04-02 15:17:38 -07:00
..
License Bump SwarmKit to 831df679a0b8a21b4dccd5791667d030642de7ff 2018-04-02 15:17:38 -07:00
Readme Bump SwarmKit to 831df679a0b8a21b4dccd5791667d030642de7ff 2018-04-02 15:17:38 -07:00
fernet.go Bump SwarmKit to 831df679a0b8a21b4dccd5791667d030642de7ff 2018-04-02 15:17:38 -07:00
key.go Bump SwarmKit to 831df679a0b8a21b4dccd5791667d030642de7ff 2018-04-02 15:17:38 -07:00

Readme

Fernet takes a user-provided *message* (an arbitrary sequence of
bytes), a *key* (256 bits), and the current time, and produces a
*token*, which contains the message in a form that can't be read
or altered without the key.

This package is compatible with the other implementations at
https://github.com/fernet. They can exchange tokens freely among
each other.

Documentation: http://godoc.org/github.com/fernet/fernet-go


INSTALL

	$ go get github.com/fernet/fernet-go


For more information and background, see the Fernet spec at
https://github.com/fernet/spec.

Fernet is distributed under the terms of the MIT license.
See the License file for details.