mirror of
https://github.com/minio/minio.git
synced 2025-01-03 19:13:22 -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.
26 lines
465 B
Go
26 lines
465 B
Go
package authentication
|
|
|
|
import (
|
|
"encoding/base64"
|
|
)
|
|
|
|
type rsaSignature struct {
|
|
hashAlgorithm string
|
|
signature []byte
|
|
}
|
|
|
|
func (s *rsaSignature) SignatureType() string {
|
|
return s.hashAlgorithm
|
|
}
|
|
|
|
func (s *rsaSignature) String() string {
|
|
return base64.StdEncoding.EncodeToString(s.signature)
|
|
}
|
|
|
|
func newRSASignature(signatureBlob []byte) (*rsaSignature, error) {
|
|
return &rsaSignature{
|
|
hashAlgorithm: "rsa-sha1",
|
|
signature: signatureBlob,
|
|
}, nil
|
|
}
|