Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,851 for sig1 (0.1 sec)

  1. src/crypto/ed25519/testdata/sign.input.gz

    sign.input 9d61b19deffd5a60ba84:d75a980182b10ab7d54b::e5564300c360ac729086: 4ccd089b28ff96da9db6:3d4017c3e843895a92b7:72:92a009a9f0d4cab8720e: c5aa8df43f9f837bedb7:fc51cd8e6218a1a38da4:af82:6291d657deec24024827: 0d4a05b07352a5436e18:e61a185bcef2613a6c7c:cbc77b:d9868d52c2bebce5f3fa: 6df9340c138cc188b5fe:c0dac102c4533186e25d:5f4c8989:124f6fc6b0d100842769: b780381a65edf8b78f69:e253af0766804b869bb1:18b6bec097:b2fc46ad47af464478c1: 78ae9effe6f245e924a7:fbcfbfa40505d7f2be44:89010d855972:6ed629fc1d9ce9e14687:...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 23:23:45 UTC 2019
    - 49.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.signing.Sign.xml

                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>signatory</td>
                </tr>
                <tr>
                    <td>sign</td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 650 bytes
    - Viewed (0)
  3. src/os/signal/sig.s

    Brad Fitzpatrick <******@****.***> 1456873066 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 410 bytes
    - Viewed (0)
  4. src/crypto/ecdsa/ecdsa_legacy.go

    func Verify(pub *PublicKey, hash []byte, r, s *big.Int) bool {
    	if r.Sign() <= 0 || s.Sign() <= 0 {
    		return false
    	}
    	sig, err := encodeSignature(r.Bytes(), s.Bytes())
    	if err != nil {
    		return false
    	}
    	return VerifyASN1(pub, hash, sig)
    }
    
    func verifyLegacy(pub *PublicKey, hash []byte, sig []byte) bool {
    	rBytes, sBytes, err := parseSignature(sig)
    	if err != nil {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. src/crypto/ed25519/ed25519.go

    	copy(privateKey[32:], publicKey)
    }
    
    // Sign signs the message with privateKey and returns a signature. It will
    // panic if len(privateKey) is not [PrivateKeySize].
    func Sign(privateKey PrivateKey, message []byte) []byte {
    	// Outline the function body so that the returned signature can be
    	// stack-allocated.
    	signature := make([]byte, SignatureSize)
    	sign(signature, privateKey, message, domPrefixPure, "")
    	return signature
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. src/os/signal/signal_plan9_test.go

    	if testing.Short() {
    		t.Skip("skipping in short mode")
    	}
    	sigs := []string{
    		"alarm",
    		"hangup",
    	}
    
    	for _, sig := range sigs {
    		// Send the signal.
    		// If it's alarm, we should not see it.
    		// If it's hangup, maybe we'll die. Let the flag tell us what to do.
    		if sig != "hangup" {
    			postNote(syscall.Getpid(), sig)
    		}
    		time.Sleep(100 * time.Millisecond)
    
    		// Ask for signal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 14 17:56:50 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/Smb2SigningDigest.java

            if ( ( flags & ServerMessageBlock2.SMB2_FLAGS_SIGNED ) == 0 ) {
                log.error("The server did not sign a message we expected to be signed");
                return true;
            }
    
            byte[] sig = new byte[SIGNATURE_LENGTH];
            System.arraycopy(data, offset + SIGNATURE_OFFSET, sig, 0, SIGNATURE_LENGTH);
    
            int index = offset + SIGNATURE_OFFSET;
            for ( int i = 0; i < SIGNATURE_LENGTH; i++ )
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Aug 17 17:34:29 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  8. src/os/signal/signal.go

    type handler struct {
    	mask [(numSig + 31) / 32]uint32
    }
    
    func (h *handler) want(sig int) bool {
    	return (h.mask[sig/32]>>uint(sig&31))&1 != 0
    }
    
    func (h *handler) set(sig int) {
    	h.mask[sig/32] |= 1 << uint(sig&31)
    }
    
    func (h *handler) clear(sig int) {
    	h.mask[sig/32] &^= 1 << uint(sig&31)
    }
    
    // Stop relaying the signals, sigs, to any channels previously registered to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SigningExtension.java

            addSignaturesToConfiguration(signTask, getConfiguration());
            return signTask;
        }
    
        protected Object addSignaturesToConfiguration(Sign task, final Configuration configuration) {
            task.getSignatures().all(sig -> configuration.getArtifacts().add(sig));
            return task.getSignatures().whenObjectRemoved(sig -> configuration.getArtifacts().remove(sig));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/failing-test.yaml

      - type: textarea
        id: additional
        attributes:
          label: Anything else we need to know?
    
      - type: textarea
        id: sigs
        attributes:
          label: Relevant SIG(s)
          description: You can identify the SIG from the "prowjob_config_url" on the testgrid dashboard for a test.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 05 16:55:38 UTC 2021
    - 1.1K bytes
    - Viewed (0)
Back to top