Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 152 for ast1 (0.06 sec)

  1. src/crypto/x509/oid_test.go

    		{oid: mustNewOIDFromInts(t, []uint64{1, 33, 23}), oid2: asn1.ObjectIdentifier{1, 33, 22}, eq: false},
    		{oid: mustNewOIDFromInts(t, []uint64{1, 33, 127}), oid2: asn1.ObjectIdentifier{1, 33, 127}, eq: true},
    		{oid: mustNewOIDFromInts(t, []uint64{1, 33, 128}), oid2: asn1.ObjectIdentifier{1, 33, 127}, eq: false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/aenum.go

    	ASHRQ
    	ASHRW
    	ASHRXL
    	ASHRXQ
    	ASHUFPD
    	ASHUFPS
    	ASIDT
    	ASLDTL
    	ASLDTQ
    	ASLDTW
    	ASMSWL
    	ASMSWQ
    	ASMSWW
    	ASQRTPD
    	ASQRTPS
    	ASQRTSD
    	ASQRTSS
    	ASTAC
    	ASTC
    	ASTD
    	ASTI
    	ASTMXCSR
    	ASTOSB
    	ASTOSL
    	ASTOSQ
    	ASTOSW
    	ASTRL
    	ASTRQ
    	ASTRW
    	ASUBB
    	ASUBL
    	ASUBPD
    	ASUBPS
    	ASUBQ
    	ASUBSD
    	ASUBSS
    	ASUBW
    	ASWAPGS
    	ASYSCALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. security/pkg/pki/util/san.go

    	rawValues := []asn1.RawValue{}
    	for _, i := range identites {
    		tag, ok := oidTagMap[i.Type]
    		if !ok {
    			return nil, fmt.Errorf("unsupported identity type: %v", i.Type)
    		}
    
    		rawValues = append(rawValues, asn1.RawValue{
    			Bytes: i.Value,
    			Class: asn1.ClassContextSpecific,
    			Tag:   tag,
    		})
    	}
    
    	bs, err := asn1.Marshal(rawValues)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 14 06:50:22 UTC 2022
    - 6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/optimize.td

    // This pattern optimizes:
    //   (x + cst1) + cst2 -> x + cst
    //   (x - cst1) - cst2 -> x - cst
    // Where: cst = cst1 + cst2
    foreach BinaryOp = [TF_AddV2Op, TF_SubOp] in {
      def OptimizeConsecutive#BinaryOp : Pat<
        (BinaryOp
          (BinaryOp $x, (TF_ConstOp:$cst1 $cst1_value)),
          (TF_ConstOp:$cst2 $cst2_value)),
        (BinaryOp
          $x, (TF_AddV2Op $cst1, $cst2))>;
    }
    
    // This pattern optimizes:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. src/crypto/x509/x509.go

    	SubjectUniqueId    asn1.BitString   `asn1:"optional,tag:2"`
    	Extensions         []pkix.Extension `asn1:"omitempty,optional,explicit,tag:3"`
    }
    
    type dsaAlgorithmParameters struct {
    	P, Q, G *big.Int
    }
    
    type validity struct {
    	NotBefore, NotAfter time.Time
    }
    
    type publicKeyInfo struct {
    	Raw       asn1.RawContent
    	Algorithm pkix.AlgorithmIdentifier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  6. src/crypto/x509/sec1.go

    // most cases it is not.
    type ecPrivateKey struct {
    	Version       int
    	PrivateKey    []byte
    	NamedCurveOID asn1.ObjectIdentifier `asn1:"optional,explicit,tag:0"`
    	PublicKey     asn1.BitString        `asn1:"optional,explicit,tag:1"`
    }
    
    // ParseECPrivateKey parses an EC private key in SEC 1, ASN.1 DER form.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. src/crypto/x509/pkcs1.go

    	var priv pkcs1PrivateKey
    	rest, err := asn1.Unmarshal(der, &priv)
    	if len(rest) > 0 {
    		return nil, asn1.SyntaxError{Msg: "trailing data"}
    	}
    	if err != nil {
    		if _, err := asn1.Unmarshal(der, &ecPrivateKey{}); err == nil {
    			return nil, errors.New("x509: failed to parse private key (use ParseECPrivateKey instead for this key format)")
    		}
    		if _, err := asn1.Unmarshal(der, &pkcs8{}); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. api/go1.6.txt

    pkg encoding/asn1, const TagSequence ideal-int
    pkg encoding/asn1, const TagSet = 17
    pkg encoding/asn1, const TagSet ideal-int
    pkg encoding/asn1, const TagT61String = 20
    pkg encoding/asn1, const TagT61String ideal-int
    pkg encoding/asn1, const TagUTCTime = 23
    pkg encoding/asn1, const TagUTCTime ideal-int
    pkg encoding/asn1, const TagUTF8String = 12
    pkg encoding/asn1, const TagUTF8String ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 13 23:40:13 UTC 2016
    - 12.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/spnego/NegTokenTarg.java

    import java.util.Enumeration;
    
    import org.bouncycastle.asn1.ASN1EncodableVector;
    import org.bouncycastle.asn1.ASN1Encoding;
    import org.bouncycastle.asn1.ASN1Enumerated;
    import org.bouncycastle.asn1.ASN1InputStream;
    import org.bouncycastle.asn1.ASN1ObjectIdentifier;
    import org.bouncycastle.asn1.ASN1OctetString;
    import org.bouncycastle.asn1.ASN1OutputStream;
    import org.bouncycastle.asn1.ASN1Sequence;
    import org.bouncycastle.asn1.ASN1TaggedObject;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 04 04:18:31 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  10. src/crypto/x509/pkcs8.go

    func ParsePKCS8PrivateKey(der []byte) (key any, err error) {
    	var privKey pkcs8
    	if _, err := asn1.Unmarshal(der, &privKey); err != nil {
    		if _, err := asn1.Unmarshal(der, &ecPrivateKey{}); err == nil {
    			return nil, errors.New("x509: failed to parse private key (use ParseECPrivateKey instead for this key format)")
    		}
    		if _, err := asn1.Unmarshal(der, &pkcs1PrivateKey{}); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top