Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 85 for Signatures (0.15 sec)

  1. src/crypto/tls/common.go

    	// is being used (see RFC 4492, Section 5.1.2).
    	SupportedPoints []uint8
    
    	// SignatureSchemes lists the signature and hash schemes that the client
    	// is willing to verify. SignatureSchemes is set only if the Signature
    	// Algorithms Extension is being used (see RFC 5246, Section 7.4.1.4.1).
    	SignatureSchemes []SignatureScheme
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  2. src/crypto/tls/tls_test.go

    func (s brokenSigner) Sign(rand io.Reader, digest []byte, opts crypto.SignerOpts) (signature []byte, err error) {
    	// Replace opts with opts.HashFunc(), so rsa.PSSOptions are discarded.
    	return s.Signer.Sign(rand, digest, opts.HashFunc())
    }
    
    // TestPKCS1OnlyCert uses a client certificate with a broken crypto.Signer that
    // always makes PKCS #1 v1.5 signatures, so can't be used with RSA-PSS.
    func TestPKCS1OnlyCert(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// TensorFlow but can be used by each filesystem plugin to represent internal
    /// data.
    ///
    /// We prefer to have these structures instead of passing `void*` into
    /// method signatures to have some type of type safety: for example, operations
    /// that are only valid on random access files have a `TF_RandomAccessFile`
    /// argument.
    ///
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The `Signature.setFile(File)` method has been removed — Gradle does not support changing the output file for the generated signature.
     * The read-only `Signature.toSignArtifact` property has been removed — it should never have been part of the public API.
     * The `@DeferredConfigurable` annotation has been removed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_client_test.go

    		cert:   testECDSACertificate,
    		key:    testECDSAPrivateKey,
    	}
    
    	runClientTestTLS10(t, test)
    	runClientTestTLS12(t, test)
    }
    
    // TestHandshakeClientCertRSAPSS tests rsa_pss_rsae_sha256 signatures from both
    // client and server certificates. It also serves from both sides a certificate
    // signed itself with RSA-PSS, mostly to check that crypto/x509 chain validation
    // works.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    In order to do so, Gradle first normalizes both inputs and then compares the result.
    For example, for a compile classpath, Gradle extracts the ABI signature from the classes on the classpath and then compares signatures between the last Gradle run and the current Gradle run as described in <<java_plugin.adoc#sec:java_compile_avoidance,Java compile avoidance>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    			// Exclude the null terminator
    			return string(buffer[:length-1]), nil
    		}
    
    		// Make a bigger buffer if needed
    		buffer = make([]byte, length)
    	}
    }
    
    // Keyctl commands with special signatures.
    
    // KeyctlGetKeyringID implements the KEYCTL_GET_KEYRING_ID command.
    // See the full documentation at:
    // http://man7.org/linux/man-pages/man3/keyctl_get_keyring_ID.3.html
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  8. cmd/test-utils_test.go

    	req.URL.RawQuery = query.Encode()
    
    	// Save signature finally.
    	req.URL.RawQuery += "&Signature=" + url.QueryEscape(signature)
    	return nil
    }
    
    // Sign given request using Signature V2.
    func signRequestV2(req *http.Request, accessKey, secretKey string) error {
    	signer.SignV2(*req, accessKey, secretKey, false)
    	return nil
    }
    
    // Sign given request using Signature V4.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/deadness_analysis.cc

        SignatureForAndRec signature(start, step, std::move(frame));
        auto it = interned_and_rec_instances_.find(signature);
        if (it != interned_and_rec_instances_.end()) {
          return it->second.get();
        }
    
        std::unique_ptr<Predicate> new_pred = Make<AndRecurrencePredicate>(
            std::get<0>(signature), std::get<1>(signature), std::get<2>(signature));
        Predicate* new_pred_ptr = new_pred.get();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/type.go

    // Params returns a slice of regular parameters of signature type t.
    func (t *Type) Params() []*Field { return t.funcType().params() }
    
    // Results returns a slice of result parameters of signature type t.
    func (t *Type) Results() []*Field { return t.funcType().results() }
    
    // RecvParamsResults returns a slice containing all of the
    // signature's parameters in receiver (if any), (normal) parameters,
    // and then results.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top