mirror of
				https://github.com/v2fly/v2ray-core.git
				synced 2025-10-31 01:39:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			146 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			146 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package raw
 | |
| 
 | |
| import (
 | |
| 	"hash/fnv"
 | |
| )
 | |
| 
 | |
| func Authenticate(b []byte) uint32 {
 | |
| 	fnv1hash := fnv.New32a()
 | |
| 	fnv1hash.Write(b)
 | |
| 	return fnv1hash.Sum32()
 | |
| }
 | 
