Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for signature (1.97 sec)

  1. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMissingSignTag: {
    		Code:           "AccessDenied",
    		Description:    "Signature header missing Signature field.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMissingSignHeadersTag: {
    		Code:           "InvalidArgument",
    		Description:    "Signature header missing SignedHeaders field.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMalformedExpires: {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 91.4K bytes
    - Viewed (6)
  2. cmd/object-api-errors.go

    // SignatureDoesNotMatch - when content md5 does not match with what was sent from client.
    type SignatureDoesNotMatch struct{}
    
    func (e SignatureDoesNotMatch) Error() string {
    	return "The request signature we calculated does not match the signature you provided. Check your key and signing method."
    }
    
    // StorageFull storage ran out of space.
    type StorageFull struct{}
    
    func (e StorageFull) Error() string {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 21.3K bytes
    - Viewed (0)
Back to top