Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 155 for p256 (0.14 sec)

  1. src/crypto/tls/testdata/Server-TLSv13-IssueTicket

    00000470  69 e4 90 fc e2 3b 12 df  3a 11 f4                 |i....;..:..|
    >>> Flow 3 (client to server)
    00000000  14 03 03 00 01 01 17 03  03 00 35 0f c5 0c ac c4  |..........5.....|
    00000010  a9 7e 32 56 fd 68 b8 86  66 8a 66 da 65 0a 5a ee  |.~2V.h..f.f.e.Z.|
    00000020  1a a5 11 ec 1c 42 28 2f  8e a3 98 49 80 a5 9e e3  |.....B(/...I....|
    00000030  5f cf 51 93 44 b2 f2 e0  6e 58 ea c6 50 84 14 ef  |_.Q.D...nX..P...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Server-TLSv12-ClientAuthRequestedAndEd25519Given

    00000180  11 51 2b ef e5 08 83 ac  17 ec 78 b8 5b 14 84 c9  |.Q+.......x.[...|
    00000190  bc 7f 22 fd 54 69 7a 82  36 c7 21 bc d6 04 c4 e7  |..".Tiz.6.!.....|
    000001a0  bc 48 c8 72 56 5d 1e 65  41 21 0a 26 85 a0 d8 c3  |.H.rV].eA!.&....|
    000001b0  50 f0 b6 07 25 ee 79 b8  f5 e6 17 85 d4 09 e7 d7  |P...%.y.........|
    000001c0  ab 8f 17 cb c2 13 a0 5a  50 cb e4 a7 16 03 03 00  |.......ZP.......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Client-TLSv12-ECDHE-RSA-AES128-SHA256

    00000060  76 f3 c9 01 d5 60 b4 34  d4 6f 68 f5 cd af d6 0b  |v....`.4.oh.....|
    00000070  e6 af ab ec 64 75 38 d6  17 d4 27 81 96 e5 71 74  |....du8...'...qt|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Server-TLSv13-CHACHA20-SHA256

    000000f0  61 08 44 4b b7 f1 12 60  a9 f6 e7 02 14 e7 d4 1a  |a.DK...`........|
    00000100  cf e6 4d ce 11 7c e3 7b  44 95 6d fa 8e b2 3b f4  |..M..|.{D.m...;.|
    00000110  bb 8e fa ed be ec fb f4  1d d0 12 56 d3 64 c8 cd  |...........V.d..|
    00000120  58 e0 e0 df c1 f2 c7 b5  7a 6c 23 ff d1 78 b7 76  |X.......zl#..x.v|
    00000130  a5 96 66 5c 4e 49 5a 8e  fd 9d 74 dc e7 f0 99 f8  |..f\NIZ...t.....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. src/regexp/backtrack.go

    // end is the end position in the input.
    // ncap is the number of captures.
    func (b *bitState) reset(prog *syntax.Prog, end int, ncap int) {
    	b.end = end
    
    	if cap(b.jobs) == 0 {
    		b.jobs = make([]job, 0, 256)
    	} else {
    		b.jobs = b.jobs[:0]
    	}
    
    	visitedSize := (len(prog.Inst)*(end+1) + visitedBits - 1) / visitedBits
    	if cap(b.visited) < visitedSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/nilcheck.go

    	)
    
    	type bp struct {
    		block *Block // block, or nil in ClearPtr state
    		ptr   *Value // if non-nil, ptr that is to be cleared in ClearPtr state
    		op    walkState
    	}
    
    	work := make([]bp, 0, 256)
    	work = append(work, bp{block: f.Entry})
    
    	// map from value ID to known non-nil version of that value ID
    	// (in the current dominator path being walked). This slice is updated by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/scalar.go

    	} else if w > 8 {
    		panic("NAF digits must fit in int8")
    	}
    
    	var naf [256]int8
    	var digits [5]uint64
    
    	for i := 0; i < 4; i++ {
    		digits[i] = byteorder.LeUint64(b[i*8:])
    	}
    
    	width := uint64(1 << w)
    	windowMask := uint64(width - 1)
    
    	pos := uint(0)
    	carry := uint64(0)
    	for pos < 256 {
    		indexU64 := pos / 64
    		indexBit := pos % 64
    		var bitBuf uint64
    		if indexBit < 64-w {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. src/crypto/md5/md5block_arm.s

    	DATA	·table+0xf0(SB)/4, $0xf7537e82
    	DATA	·table+0xf4(SB)/4, $0xbd3af235
    	DATA	·table+0xf8(SB)/4, $0x2ad7d2bb
    	DATA	·table+0xfc(SB)/4, $0xeb86d391
    	// Global definition
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Server-TLSv13-ExportKeyingMaterial

    00000350  f2 81 e4 8d 51 97 11 6b  6c ce b7 7a 11 fd 71 f7  |....Q..kl..z..q.|
    00000360  ee 67 c6 83 27 31 39 1f  d4 d1 be b8 c2 06 11 e3  |.g..'19.........|
    00000370  34 36 ff f3 c7 e6 1d b5  87 6b cf 12 56 2c e8 03  |46.......k..V,..|
    00000380  83 bf 03 f8 57 fd 54 c7  32 19 b1 ba fe e4 58 05  |....W.T.2.....X.|
    00000390  77 6f 48 f4 af 2f 99 dd  47 a5 1a 30 17 2f 1d 25  |woH../..G..0./.%|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

                    "efaae115-cc21-4b2e-a150-fb4e0d807736",
                    "30f872e8-9cb5-4b22-b65c-6819ca7a14ba",
                    "d8e5fb54-6e90-4f74-adb3-451abfbe76a8",
                    "b47d62b8-9256-47a1-8e21-21ba9639c212",
                    "b25da555-e1f7-4bc5-92fe-4c895d9c70d8",
                    "088f0de7-5973-4c10-a7ff-9f3cd7718572",
                    "b161de76-e5d5-4224-883b-a749b147d63d",
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top