Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for FullBytes (0.12 sec)

  1. src/crypto/x509/parser.go

    	switch {
    	case oid.Equal(oidPublicKeyRSA):
    		// RSA public keys must have a NULL in the parameters.
    		// See RFC 3279, Section 2.3.1.
    		if !bytes.Equal(params.FullBytes, asn1.NullBytes) {
    			return nil, errors.New("x509: RSA key missing NULL parameters")
    		}
    
    		p := &pkcs1PublicKey{N: new(big.Int)}
    		if !der.ReadASN1(&der, cryptobyte_asn1.SEQUENCE) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. src/encoding/asn1/marshal.go

    			return bytesEncoder(nil), nil
    		}
    	}
    
    	if v.Type() == rawValueType {
    		rv := v.Interface().(RawValue)
    		if len(rv.FullBytes) != 0 {
    			return bytesEncoder(rv.FullBytes), nil
    		}
    
    		t := new(taggedEncoder)
    
    		t.tag = bytesEncoder(appendTagAndLength(t.scratch[:0], tagAndLength{rv.Class, rv.Tag, len(rv.Bytes), rv.IsCompound}))
    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. src/encoding/asn1/asn1_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if !bytes.Equal(NullBytes, marshaled) {
    		t.Errorf("Expected Marshal of NullRawValue to yield %x, got %x", NullBytes, marshaled)
    	}
    
    	unmarshaled := RawValue{}
    	if _, err := Unmarshal(NullBytes, &unmarshaled); err != nil {
    		t.Fatal(err)
    	}
    
    	unmarshaled.FullBytes = NullRawValue.FullBytes
    	if len(unmarshaled.Bytes) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 18:24:36 UTC 2023
    - 43.6K bytes
    - Viewed (0)
  4. src/encoding/asn1/asn1.go

    	return
    }
    
    // NULL
    
    // NullRawValue is a [RawValue] with its Tag set to the ASN.1 NULL type tag (5).
    var NullRawValue = RawValue{Tag: TagNull}
    
    // NullBytes contains bytes representing the DER-encoded ASN.1 NULL type.
    var NullBytes = []byte{TagNull, 0}
    
    // OBJECT IDENTIFIER
    
    // An ObjectIdentifier represents an ASN.1 OBJECT IDENTIFIER.
    type ObjectIdentifier []int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  5. api/go1.9.txt

    pkg database/sql/driver, var ErrRemoveArgument error
    pkg encoding/asn1, const TagNull = 5
    pkg encoding/asn1, const TagNull ideal-int
    pkg encoding/asn1, var NullBytes []uint8
    pkg encoding/asn1, var NullRawValue RawValue
    pkg encoding/base32, const NoPadding = -1
    pkg encoding/base32, const NoPadding int32
    pkg encoding/base32, const StdPadding = 61
    pkg encoding/base32, const StdPadding int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 04 20:20:20 UTC 2021
    - 10.7K bytes
    - Viewed (0)
Back to top