Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestMarshalOID (0.21 sec)

  1. src/encoding/asn1/marshal_test.go

    		}
    	}
    }
    
    func TestInvalidUTF8(t *testing.T) {
    	_, err := Marshal(string([]byte{0xff, 0xff}))
    	if err == nil {
    		t.Errorf("invalid UTF8 string was accepted")
    	}
    }
    
    func TestMarshalOID(t *testing.T) {
    	var marshalTestsOID = []marshalTest{
    		{[]byte("\x06\x01\x30"), "0403060130"}, // bytes format returns a byte sequence \x04
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 10K bytes
    - Viewed (0)
Back to top