Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. src/go/build/deps_test.go

    	< crypto/rand
    	< crypto/internal/mlkem768
    	< crypto/ed25519
    	< encoding/asn1
    	< golang.org/x/crypto/cryptobyte/asn1
    	< golang.org/x/crypto/cryptobyte
    	< crypto/internal/bigmod
    	< crypto/dsa, crypto/elliptic, crypto/rsa
    	< crypto/ecdsa
    	< CRYPTO-MATH;
    
    	CGO, net !< CRYPTO-MATH;
    
    	# TLS, Prince of Dependencies.
    	CRYPTO-MATH, NET, container/list, encoding/hex, encoding/pem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top