Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for sv (0.11 sec)

  1. cmd/signature-v4-parser.go

    	// to make parsing easier.
    	v4Auth = strings.ReplaceAll(v4Auth, " ", "")
    	if v4Auth == "" {
    		return sv, ErrAuthHeaderEmpty
    	}
    
    	// Verify if the header algorithm is supported or not.
    	if !strings.HasPrefix(v4Auth, signV4Algorithm) {
    		return sv, ErrSignatureVersionNotSupported
    	}
    
    	// Strip off the Algorithm prefix.
    	v4Auth = strings.TrimPrefix(v4Auth, signV4Algorithm)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 9.4K bytes
    - Viewed (0)
Back to top