Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,122 for sig1 (0.06 sec)

  1. src/crypto/dsa/dsa.go

    // truncation itself.
    //
    // Be aware that calling Sign with an attacker-controlled [PrivateKey] may
    // require an arbitrary amount of CPU.
    func Sign(rand io.Reader, priv *PrivateKey, hash []byte) (r, s *big.Int, err error) {
    	randutil.MaybeReadByte(rand)
    
    	// FIPS 186-3, section 4.6
    
    	n := priv.Q.BitLen()
    	if priv.Q.Sign() <= 0 || priv.P.Sign() <= 0 || priv.G.Sign() <= 0 || priv.X.Sign() <= 0 || n%8 != 0 {
    		err = ErrInvalidPublicKey
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SignOperation.java

    import java.util.List;
    
    /**
     * A sign operation creates digital signatures for one or more files or {@link PublishArtifact publish artifacts}.
     *
     * <p>The external representation of the signature is specified by the {@link #getSignatureType() signature type property}, while the {@link #signatory} property specifies who is to sign. <p> A sign
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. src/crypto/rsa/pkcs1v15.go

    // channels, or if an attacker has control of part of the inputs.
    func VerifyPKCS1v15(pub *PublicKey, hash crypto.Hash, hashed []byte, sig []byte) error {
    	if boring.Enabled {
    		bkey, err := boringPublicKey(pub)
    		if err != nil {
    			return err
    		}
    		if err := boring.VerifyRSAPKCS1v15(bkey, hash, hashed, sig); err != nil {
    			return ErrVerification
    		}
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. platforms/software/security/src/main/java/org/gradle/plugins/signing/type/AbstractSignatureType.java

        @Override
        public File sign(Signatory signatory, File toSign) {
            File signatureFile = fileFor(toSign);
            try (InputStream toSignStream = new BufferedInputStream(new FileInputStream(toSign));
                 OutputStream signatureFileStream = new BufferedOutputStream(new FileOutputStream(signatureFile))) {
                sign(signatory, toSignStream, signatureFileStream);
            } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    0EB3          ; mapped                 ; 0ECD 0EB2     # 1.1  LAO VOWEL SIGN AM
    0EB4..0EB9    ; valid                                  # 1.1  LAO VOWEL SIGN I..LAO VOWEL SIGN UU
    0EBA          ; valid                                  # 12.0 LAO SIGN PALI VIRAMA
    0EBB..0EBD    ; valid                                  # 1.1  LAO VOWEL SIGN MAI KON..LAO SEMIVOWEL SIGN NYO
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/signing/in-memory/kotlin/build.gradle.kts

        from("src/stuff")
    }
    
    // tag::signing[]
    signing {
        val signingKey: String? by project
        val signingPassword: String? by project
        useInMemoryPgpKeys(signingKey, signingPassword)
        sign(tasks["stuffZip"])
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 327 bytes
    - Viewed (0)
  7. src/runtime/sigqueue.go

    						sigNoteSleep(&sig.note)
    						break Receive
    					}
    					notetsleepg(&sig.note, -1)
    					noteclear(&sig.note)
    					break Receive
    				}
    			case sigSending:
    				if sig.state.CompareAndSwap(sigSending, sigIdle) {
    					break Receive
    				}
    			}
    		}
    
    		// Incorporate updates from sender into local copy.
    		for i := range sig.mask {
    			sig.recv[i] = atomic.Xchg(&sig.mask[i], 0)
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/InMemoryPgpSignatoryProviderIntegrationSpec.groovy

                    sign(jar)
                }
            """
    
            when:
            executer.withEnvironmentVars([
                ORG_GRADLE_PROJECT_secretKey: secretKeyWithPassword,
                ORG_GRADLE_PROJECT_password: password
            ])
            succeeds("signJar")
    
            then:
            executed(":signJar")
            file("build", "libs", "sign-1.0.jar.asc").exists()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 12K bytes
    - Viewed (0)
  9. ci/official/containers/linux_arm64/build.sh

    # Builds the following Docker images for Linux ARM64. See the accompanying
    # Dockerfile for more details:
    # - gcr.io/tensorflow-sigs/build-arm64:jax-latest-multi-python
    # - gcr.io/tensorflow-sigs/build-arm64:tf-latest-multi-python
    
    set -exo pipefail
    
    function is_continuous_or_release() {
      [[ "$KOKORO_JOB_TYPE" == "CONTINUOUS_INTEGRATION" ]] || [[ "$KOKORO_JOB_TYPE" == "RELEASE" ]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 22:33:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. OWNERS_ALIASES

        - liggitt
        - mikedanese
      # SIG Release
      release-engineering-approvers:
        - cpanato # SIG Technical Lead / RelEng subproject owner / Release Manager
        - jeremyrickard # SIG Chair / RelEng subproject owner / Release Manager
        - justaugustus # SIG Chair / RelEng subproject owner / Release Manager
        - puerco # SIG Technical Lead / RelEng subproject owner / Release Manager
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top