mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	@@ -48,13 +48,8 @@ func BasicAuthDecode(encoded string) (user string, name string, err error) {
 | 
				
			|||||||
		return user, name, err
 | 
							return user, name, err
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	a := strings.Split(string(s), ":")
 | 
						auth := strings.SplitN(string(s), ":", 2)
 | 
				
			||||||
	if len(a) == 2 {
 | 
						return auth[0], auth[1], err
 | 
				
			||||||
		user, name = a[0], a[1]
 | 
					 | 
				
			||||||
	} else {
 | 
					 | 
				
			||||||
		err = errors.New("decode failed")
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
	return user, name, err
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func BasicAuthEncode(username, password string) string {
 | 
					func BasicAuthEncode(username, password string) string {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user