Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for SignatureAlgorithm (0.26 sec)

  1. src/crypto/tls/handshake_test.go

    // testRSAPSSCertificate has signatureAlgorithm rsassaPss, but subjectPublicKeyInfo
    // algorithm rsaEncryption, for use with the rsa_pss_rsae_* SignatureSchemes.
    // See also TestRSAPSSKeyError. testRSAPSSCertificate is self-signed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
Back to top