mirror of
https://github.com/minio/minio.git
synced 2024-12-29 00:23:21 -05:00
7d75d61621
Manta is an Object Storage by [Joyent](https://www.joyent.com/) This PR adds initial support for Manta. It is intended as non-production ready so that feedback can be obtained.
11 lines
292 B
Go
11 lines
292 B
Go
package authentication
|
|
|
|
const authorizationHeaderFormat = `Signature keyId="%s",algorithm="%s",headers="%s",signature="%s"`
|
|
|
|
type Signer interface {
|
|
DefaultAlgorithm() string
|
|
KeyFingerprint() string
|
|
Sign(dateHeader string) (string, error)
|
|
SignRaw(toSign string) (string, string, error)
|
|
}
|