Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for readUnsigned (0.12 sec)

  1. src/vendor/golang.org/x/crypto/cryptobyte/string.go

    		return false
    	}
    	*out = uint64(v[0])<<56 | uint64(v[1])<<48 | uint64(v[2])<<40 | uint64(v[3])<<32 | uint64(v[4])<<24 | uint64(v[5])<<16 | uint64(v[6])<<8 | uint64(v[7])
    	return true
    }
    
    func (s *String) readUnsigned(out *uint32, length int) bool {
    	v := s.read(length)
    	if v == nil {
    		return false
    	}
    	var result uint32
    	for i := 0; i < length; i++ {
    		result <<= 8
    		result |= uint32(v[i])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/cryptobyte/asn1.go

    		lenLen := lenByte & 0x7f
    		var len32 uint32
    
    		if lenLen == 0 || lenLen > 4 || len(*s) < int(2+lenLen) {
    			return false
    		}
    
    		lenBytes := String((*s)[2 : 2+lenLen])
    		if !lenBytes.readUnsigned(&len32, int(lenLen)) {
    			return false
    		}
    
    		// ITU-T X.690 section 10.1 (DER length forms) requires encoding the length
    		// with the minimum number of octets.
    		if len32 < 128 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top