Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for BitLength (0.3 sec)

  1. src/crypto/x509/x509.go

    		return nil, err
    	}
    
    	pkix := pkixPublicKey{
    		Algo: publicKeyAlgorithm,
    		BitString: asn1.BitString{
    			Bytes:     publicKeyBytes,
    			BitLength: 8 * len(publicKeyBytes),
    		},
    	}
    
    	ret, _ := asn1.Marshal(pkix)
    	return ret, nil
    }
    
    // These structures reflect the ASN.1 structure of X.509 certificates.:
    
    type certificate struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. src/encoding/asn1/marshal.go

    	return dst
    }
    
    type bitStringEncoder BitString
    
    func (b bitStringEncoder) Len() int {
    	return len(b.Bytes) + 1
    }
    
    func (b bitStringEncoder) Encode(dst []byte) {
    	dst[0] = byte((8 - b.BitLength%8) % 8)
    	if copy(dst[1:], b.Bytes) != len(b.Bytes) {
    		panic("internal error")
    	}
    }
    
    type oidEncoder []int
    
    func (oid oidEncoder) Len() int {
    	l := base128IntLength(int64(oid[0]*40 + oid[1]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. pilot/pkg/xds/debug.go

    	}
    }
    
    // VersionLen is the Config Version and is only used as the nonce prefix, but we can reconstruct
    // it because is is a b64 encoding of a 64 bit array, which will always be 12 chars in length.
    // len = ceil(bitlength/(2^6))+1
    const VersionLen = 12
    
    func (s *DiscoveryServer) getResourceVersion(nonce, key string, cache map[string]string) string {
    	if len(nonce) < VersionLen {
    		return ""
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(ObjectIdentifier).Equal", Method, 0},
    		{"(ObjectIdentifier).String", Method, 3},
    		{"(StructuralError).Error", Method, 0},
    		{"(SyntaxError).Error", Method, 0},
    		{"BitString", Type, 0},
    		{"BitString.BitLength", Field, 0},
    		{"BitString.Bytes", Field, 0},
    		{"ClassApplication", Const, 6},
    		{"ClassContextSpecific", Const, 6},
    		{"ClassPrivate", Const, 6},
    		{"ClassUniversal", Const, 6},
    		{"Enumerated", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top