Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for addASN1IntBytes (0.12 sec)

  1. src/crypto/ecdsa/ecdsa.go

    	var b cryptobyte.Builder
    	b.AddASN1(asn1.SEQUENCE, func(b *cryptobyte.Builder) {
    		addASN1IntBytes(b, r)
    		addASN1IntBytes(b, s)
    	})
    	return b.Bytes()
    }
    
    // addASN1IntBytes encodes in ASN.1 a positive integer represented as
    // a big-endian byte slice with zero or more leading zeroes.
    func addASN1IntBytes(b *cryptobyte.Builder, bytes []byte) {
    	for len(bytes) > 0 && bytes[0] == 0 {
    		bytes = bytes[1:]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top