mirror of
https://github.com/minio/minio.git
synced 2025-11-11 06:20:14 -05:00
Add Support for Manta Object Storage as a Gateway (#5025)
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.
This commit is contained in:
committed by
Nitish Tiwari
parent
1f77708a30
commit
7d75d61621
10
vendor/github.com/joyent/triton-go/authentication/signer.go
generated
vendored
Normal file
10
vendor/github.com/joyent/triton-go/authentication/signer.go
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
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)
|
||||
}
|
||||
Reference in New Issue
Block a user