Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DSA (0.03 sec)

  1. src/crypto/dsa/dsa.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package dsa implements the Digital Signature Algorithm, as defined in FIPS 186-3.
    //
    // The DSA operations in this package are not implemented using constant-time algorithms.
    //
    // Deprecated: DSA is a legacy algorithm, and modern alternatives such as
    // Ed25519 (implemented by package crypto/ed25519) should be used instead. Keys
    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. testing/internal-integ-testing/src/main/resources/sshd-config/test-dsa.key

    Louis Jacomet <******@****.***> 1711728981 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 672 bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/resources/org/gradle/compile/daemon/ParallelCompilerDaemonIntegrationTest/shared/build.gradle

        // force creation of multiple daemons for Java compilation by alternating between two distinct sets of JVM args
        def count = (project.name - "project") as int
        compileJava.options.forkOptions.jvmArgs = count % 2 ? ["-dsa"] : ["-esa"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 388 bytes
    - Viewed (0)
  4. src/crypto/crypto.go

    	// Sign signs digest with the private key, possibly using entropy from
    	// rand. For an RSA key, the resulting signature should be either a
    	// PKCS #1 v1.5 or PSS signature (as indicated by opts). For an (EC)DSA
    	// key, it should be a DER-serialised, ASN.1 signature structure.
    	//
    	// Hash implements the SignerOpts interface and, in most cases, one can
    	// simply pass in the hash function used as opts. Sign may also attempt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top