Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 51 for p384 (0.08 sec)

  1. cmd/sftp-server.go

    // preference order.
    // https://cs.opensource.google/go/x/crypto/+/refs/tags/v0.22.0:ssh/common.go;l=44
    var supportedKexAlgos = []string{
    	kexAlgoCurve25519SHA256, kexAlgoCurve25519SHA256LibSSH,
    	// P384 and P521 are not constant-time yet, but since we don't
    	// reuse ephemeral keys, using them for ECDH should be OK.
    	kexAlgoECDH256, kexAlgoECDH384, kexAlgoECDH521,
    	kexAlgoDH14SHA256, kexAlgoDH16SHA512, kexAlgoDH14SHA1,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. security/pkg/pki/ca/ca.go

    	_, signingKey, _, _ := ca.keyCertBundle.GetAll()
    	curve, err := util.GetEllipticCurve(signingKey)
    	if err == nil {
    		opts.ECSigAlg = util.EcdsaSigAlg
    		switch curve {
    		case elliptic.P384():
    			opts.ECCCurve = util.P384Curve
    		default:
    			opts.ECCCurve = util.P256Curve
    		}
    	}
    
    	csrPEM, privPEM, err := util.GenCSR(opts)
    	if err != nil {
    		return nil, nil, err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  3. src/crypto/tls/boring_test.go

    	I_M1 := boringCert(t, "I_M1", I_R1.key, M1_R1, boringCertCA|boringCertFIPSOK)
    	I_M2 := boringCert(t, "I_M2", I_R1.key, M2_R1, boringCertCA|boringCertFIPSOK)
    
    	L1_I := boringCert(t, "L1_I", boringECDSAKey(t, elliptic.P384()), I_R1, boringCertLeaf|boringCertFIPSOK)
    	L2_I := boringCert(t, "L2_I", boringRSAKey(t, 1024), I_R1, boringCertLeaf)
    
    	// client verifying server cert
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. doap_Maven.rdf

    maven-3.8.5-src.tar.gz Apache Maven 3.8.4 2021-11-14 3.8.4 http://archive.apache.org/dist/maven/maven-3/3.8.4/binaries/apache-maven-3.8.4-bin.zip http://archive.apache.org/dist/maven/maven-3/3.8.4/binaries/apache-maven-3.8.4-bin.tar.gz http://archive.apache.org/dist/maven/maven-3/3.8.4/source/apache-maven-3.8.4-src.zip http://archive.apache.org/dist/maven/maven-3/3.8.4/source/apache-maven-3.8.4-src.tar.gz Apache Maven 3.8.3 2021-09-27 3.8.3 http://archive.apache.org/dist/maven/maven-3/3.8.3/bina...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 01 11:47:44 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/inst.go

    	case ASB:
    		return &inst{0x23, 0x0, 0x0, 0, 0x0}
    	case ASBREAK:
    		return &inst{0x73, 0x0, 0x1, 1, 0x0}
    	case ASCD:
    		return &inst{0x2f, 0x3, 0x0, 384, 0xc}
    	case ASCW:
    		return &inst{0x2f, 0x2, 0x0, 384, 0xc}
    	case ASCALL:
    		return &inst{0x73, 0x0, 0x0, 0, 0x0}
    	case ASD:
    		return &inst{0x23, 0x3, 0x0, 0, 0x0}
    	case ASEXTB:
    		return &inst{0x13, 0x1, 0x4, 1540, 0x30}
    	case ASEXTH:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. src/runtime/sigtab_aix.go

    	79:          {_SigNotify, "signal 79"},
    	80:          {_SigNotify, "signal 80"},
    	81:          {_SigNotify, "signal 81"},
    	82:          {_SigNotify, "signal 82"},
    	83:          {_SigNotify, "signal 83"},
    	84:          {_SigNotify, "signal 84"},
    	85:          {_SigNotify, "signal 85"},
    	86:          {_SigNotify, "signal 86"},
    	87:          {_SigNotify, "signal 87"},
    	88:          {_SigNotify, "signal 88"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 20:58:16 UTC 2018
    - 11.3K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_darwin_amd64.go

    	SYS___MAC_EXECVE                   = 380
    	SYS___MAC_SYSCALL                  = 381
    	SYS___MAC_GET_FILE                 = 382
    	SYS___MAC_SET_FILE                 = 383
    	SYS___MAC_GET_LINK                 = 384
    	SYS___MAC_SET_LINK                 = 385
    	SYS___MAC_GET_PROC                 = 386
    	SYS___MAC_SET_PROC                 = 387
    	SYS___MAC_GET_FD                   = 388
    	SYS___MAC_SET_FD                   = 389
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go

    	SYS_STATX                   = 379
    	SYS_S390_STHYI              = 380
    	SYS_KEXEC_FILE_LOAD         = 381
    	SYS_IO_PGETEVENTS           = 382
    	SYS_RSEQ                    = 383
    	SYS_PKEY_MPROTECT           = 384
    	SYS_PKEY_ALLOC              = 385
    	SYS_PKEY_FREE               = 386
    	SYS_SEMTIMEDOP              = 392
    	SYS_SEMGET                  = 393
    	SYS_SEMCTL                  = 394
    	SYS_SHMGET                  = 395
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go

    	SYS___MAC_EXECVE                   = 380
    	SYS___MAC_SYSCALL                  = 381
    	SYS___MAC_GET_FILE                 = 382
    	SYS___MAC_SET_FILE                 = 383
    	SYS___MAC_GET_LINK                 = 384
    	SYS___MAC_SET_LINK                 = 385
    	SYS___MAC_GET_PROC                 = 386
    	SYS___MAC_SET_PROC                 = 387
    	SYS___MAC_GET_FD                   = 388
    	SYS___MAC_SET_FD                   = 389
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go

    	SYS_COPY_FILE_RANGE         = 379
    	SYS_PREADV2                 = 380
    	SYS_PWRITEV2                = 381
    	SYS_KEXEC_FILE_LOAD         = 382
    	SYS_STATX                   = 383
    	SYS_PKEY_ALLOC              = 384
    	SYS_PKEY_FREE               = 385
    	SYS_PKEY_MPROTECT           = 386
    	SYS_RSEQ                    = 387
    	SYS_IO_PGETEVENTS           = 388
    	SYS_SEMTIMEDOP              = 392
    	SYS_SEMGET                  = 393
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top