Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 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. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/SFTPServer.groovy

            passwordAuthenticationEnabled = true
        }
    
        private SshServer setupConfiguredTestSshd(int sshPort) {
            //copy dsa key to config directory
            URL fileUrl = ClassLoader.getSystemResource("sshd-config/test-dsa.key")
            FileUtils.copyURLToFile(fileUrl, new File(configDir, "test-dsa.key"))
    
            SshServer sshServer = SshServer.setUpDefaultServer()
            sshServer.setPort(sshPort)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. src/crypto/x509/x509.go

    	{SHA512WithRSAPSS, "SHA512-RSAPSS", oidSignatureRSAPSS, pssParametersSHA512, RSA, crypto.SHA512, true},
    	{DSAWithSHA1, "DSA-SHA1", oidSignatureDSAWithSHA1, emptyRawValue, DSA, crypto.SHA1, false},
    	{DSAWithSHA256, "DSA-SHA256", oidSignatureDSAWithSHA256, emptyRawValue, DSA, crypto.SHA256, false},
    	{ECDSAWithSHA1, "ECDSA-SHA1", oidSignatureECDSAWithSHA1, emptyRawValue, ECDSA, crypto.SHA1, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  6. src/crypto/x509/parser.go

    		}
    		return ecdh.X25519().NewPublicKey(der)
    	case oid.Equal(oidPublicKeyDSA):
    		y := new(big.Int)
    		if !der.ReadASN1Integer(y) {
    			return nil, errors.New("x509: invalid DSA public key")
    		}
    		pub := &dsa.PublicKey{
    			Y: y,
    			Parameters: dsa.Parameters{
    				P: new(big.Int),
    				Q: new(big.Int),
    				G: new(big.Int),
    			},
    		}
    		paramsDer := cryptobyte.String(params.FullBytes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/vendor/golang.org/x/sys/unix/asm_zos_s390x.s

    	RET
    
    // func svcCall(fnptr unsafe.Pointer, argv *unsafe.Pointer, dsa *uint64)
    TEXT ·svcCall(SB), NOSPLIT, $0
    	BL   runtime·save_g(SB)     // Save g and stack pointer
    	MOVW PSALAA, R8
    	MOVD LCA64(R8), R8
    	MOVD SAVSTACK_ASYNC(R8), R9
    	MOVD R15, 0(R9)
    
    	MOVD argv+8(FP), R1   // Move function arguments into registers
    	MOVD dsa+16(FP), g
    	MOVD fnptr+0(FP), R15
    
    	BYTE $0x0D // Branch to function
    	BYTE $0xEF
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. platforms/software/security/src/testFixtures/groovy/org/gradle/security/fixtures/SigningFixtures.groovy

            signatureSubpacketGenerator.setKeyFlags(false, KeyFlags.SIGN_DATA | KeyFlags.CERTIFY_OTHER);
            signatureSubpacketGenerator.setPreferredSymmetricAlgorithms(false, PublicKeyAlgorithmTags.DSA)
            signatureSubpacketGenerator.setPreferredHashAlgorithms(false, HashAlgorithmTags.SHA512)
            signatureSubpacketGenerator.setPreferredCompressionAlgorithms(false, CompressionAlgorithmTags.ZIP)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. src/crypto/x509/x509_test.go

    	if err != nil {
    		t.Fatalf("Failed to parse certificate: %s", err)
    	}
    	if cert.PublicKeyAlgorithm != DSA {
    		t.Errorf("Parsed key algorithm was not DSA")
    	}
    	parsedKey, ok := cert.PublicKey.(*dsa.PublicKey)
    	if !ok {
    		t.Fatalf("Parsed key was not a DSA key: %s", err)
    	}
    	if expectedKey.Y.Cmp(parsedKey.Y) != 0 ||
    		expectedKey.P.Cmp(parsedKey.P) != 0 ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
Back to top