Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for DSA (0.02 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. src/crypto/x509/example_test.go

    	if err != nil {
    		panic("failed to parse DER encoded public key: " + err.Error())
    	}
    
    	switch pub := pub.(type) {
    	case *rsa.PublicKey:
    		fmt.Println("pub is of type RSA:", pub)
    	case *dsa.PublicKey:
    		fmt.Println("pub is of type DSA:", pub)
    	case *ecdsa.PublicKey:
    		fmt.Println("pub is of type ECDSA:", pub)
    	case ed25519.PublicKey:
    		fmt.Println("pub is of type Ed25519:", pub)
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 29 16:52:01 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. test/stress/parsego.go

    	"compress/gzip",
    	"compress/lzw",
    	"compress/zlib",
    	"container",
    	"container/heap",
    	"container/list",
    	"container/ring",
    	"crypto",
    	"crypto/aes",
    	"crypto/cipher",
    	"crypto/des",
    	"crypto/dsa",
    	"crypto/ecdsa",
    	"crypto/elliptic",
    	"crypto/hmac",
    	"crypto/md5",
    	"crypto/rand",
    	"crypto/rc4",
    	"crypto/rsa",
    	"crypto/sha1",
    	"crypto/sha256",
    	"crypto/sha512",
    	"crypto/subtle",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 4.1K bytes
    - Viewed (0)
  8. src/crypto/dsa/dsa_test.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package dsa
    
    import (
    	"crypto/rand"
    	"math/big"
    	"testing"
    )
    
    func testSignAndVerify(t *testing.T, i int, priv *PrivateKey) {
    	hashed := []byte("testing")
    	r, s, err := Sign(rand.Reader, priv, hashed)
    	if err != nil {
    		t.Errorf("%d: error signing: %s", i, err)
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 15 21:04:43 UTC 2019
    - 4.7K bytes
    - Viewed (0)
  9. src/go/internal/gccgoimporter/gccgoinstallation_test.go

    	"compress/flate",
    	"compress/gzip",
    	"compress/lzw",
    	"compress/zlib",
    	"container/heap",
    	"container/list",
    	"container/ring",
    	"crypto/aes",
    	"crypto/cipher",
    	"crypto/des",
    	"crypto/dsa",
    	"crypto/ecdsa",
    	"crypto/elliptic",
    	"crypto",
    	"crypto/hmac",
    	"crypto/md5",
    	"crypto/rand",
    	"crypto/rc4",
    	"crypto/rsa",
    	"crypto/sha1",
    	"crypto/sha256",
    	"crypto/sha512",
    	"crypto/subtle",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 21 02:25:41 UTC 2021
    - 4K bytes
    - Viewed (0)
  10. 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)
Back to top