Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 39 of 39 for SignatureAlgorithm (0.47 sec)

  1. src/crypto/tls/handshake_messages_test.go

    	}
    	return reflect.ValueOf(m)
    }
    
    func (*certificateVerifyMsg) Generate(rand *rand.Rand, size int) reflect.Value {
    	m := &certificateVerifyMsg{}
    	m.hasSignatureAlgorithm = true
    	m.signatureAlgorithm = SignatureScheme(rand.Intn(30000))
    	m.signature = randomBytes(rand.Intn(15)+1, rand)
    	return reflect.ValueOf(m)
    }
    
    func (*certificateStatusMsg) Generate(rand *rand.Rand, size int) reflect.Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. src/crypto/x509/parser.go

    		return nil, errors.New("x509: inner and outer signature algorithm identifiers don't match")
    	}
    	sigAI, err := parseAI(sigAISeq)
    	if err != nil {
    		return nil, err
    	}
    	cert.SignatureAlgorithm = getSignatureAlgorithmFromAI(sigAI)
    
    	var issuerSeq cryptobyte.String
    	if !tbs.ReadASN1Element(&issuerSeq, cryptobyte_asn1.SEQUENCE) {
    		return nil, errors.New("x509: malformed issuer")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	OutQLen         uint32
    	DescrLen        uint32
    	Descr           [MAXLEN_IFDESCR]byte
    }
    
    type CertInfo struct {
    	Version              uint32
    	SerialNumber         CryptIntegerBlob
    	SignatureAlgorithm   CryptAlgorithmIdentifier
    	Issuer               CertNameBlob
    	NotBefore            Filetime
    	NotAfter             Filetime
    	Subject              CertNameBlob
    	SubjectPublicKeyInfo CertPublicKeyInfo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  4. api/go1.3.txt

    pkg crypto/x509, type CertificateRequest struct, RawTBSCertificateRequest []uint8
    pkg crypto/x509, type CertificateRequest struct, Signature []uint8
    pkg crypto/x509, type CertificateRequest struct, SignatureAlgorithm SignatureAlgorithm
    pkg crypto/x509, type CertificateRequest struct, Subject pkix.Name
    pkg crypto/x509, type CertificateRequest struct, Version int
    pkg crypto/x509/pkix, type AttributeTypeAndValueSET struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(InsecureAlgorithmError).Error", Method, 6},
    		{"(OID).Equal", Method, 22},
    		{"(OID).EqualASN1OID", Method, 22},
    		{"(OID).String", Method, 22},
    		{"(PublicKeyAlgorithm).String", Method, 10},
    		{"(SignatureAlgorithm).String", Method, 6},
    		{"(SystemRootsError).Error", Method, 1},
    		{"(SystemRootsError).Unwrap", Method, 16},
    		{"(UnhandledCriticalExtension).Error", Method, 0},
    		{"(UnknownAuthorityError).Error", Method, 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)
  6. cmd/admin-handlers.go

    			for _, v := range c.URIs {
    				check ^= xxh3.HashString(v.String())
    			}
    			tlsInfo.Certs = append(tlsInfo.Certs, madmin.TLSCert{
    				PubKeyAlgo:    c.PublicKeyAlgorithm.String(),
    				SignatureAlgo: c.SignatureAlgorithm.String(),
    				NotBefore:     c.NotBefore,
    				NotAfter:      c.NotAfter,
    				Checksum:      strconv.FormatUint(check, 16),
    			})
    		}
    	}
    	return tlsInfo
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg crypto/x509, const MD2WithRSA SignatureAlgorithm
    pkg crypto/x509, const MD5WithRSA SignatureAlgorithm
    pkg crypto/x509, const NotAuthorizedToSign InvalidReason
    pkg crypto/x509, const RSA PublicKeyAlgorithm
    pkg crypto/x509, const SHA1WithRSA SignatureAlgorithm
    pkg crypto/x509, const SHA256WithRSA SignatureAlgorithm
    pkg crypto/x509, const SHA384WithRSA SignatureAlgorithm
    pkg crypto/x509, const SHA512WithRSA SignatureAlgorithm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  8. api/go1.13.txt

    pkg crypto/tls, const Ed25519 SignatureScheme
    pkg crypto/x509, const Ed25519 = 4
    pkg crypto/x509, const Ed25519 PublicKeyAlgorithm
    pkg crypto/x509, const PureEd25519 = 16
    pkg crypto/x509, const PureEd25519 SignatureAlgorithm
    pkg database/sql, method (*Conn) Raw(func(interface{}) error) error
    pkg database/sql, method (*NullInt32) Scan(interface{}) error
    pkg database/sql, method (NullInt32) Value() (driver.Value, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  9. api/go1.1.txt

    pkg crypto/x509, const ECDSAWithSHA1 SignatureAlgorithm
    pkg crypto/x509, const ECDSAWithSHA256 = 10
    pkg crypto/x509, const ECDSAWithSHA256 SignatureAlgorithm
    pkg crypto/x509, const ECDSAWithSHA384 = 11
    pkg crypto/x509, const ECDSAWithSHA384 SignatureAlgorithm
    pkg crypto/x509, const ECDSAWithSHA512 = 12
    pkg crypto/x509, const ECDSAWithSHA512 SignatureAlgorithm
    pkg crypto/x509, const Expired = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top