Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 3q (0.02 sec)

  1. src/crypto/internal/edwards25519/tables.go

    	}
    }
    
    // Builds a lookup table at runtime. Fast.
    func (v *nafLookupTable5) FromP3(q *Point) {
    	// Goal: v.points[i] = (2*i+1)*Q, i.e., Q, 3Q, 5Q, ..., 15Q
    	// This allows lookup of -15Q, ..., -3Q, -Q, 0, Q, 3Q, ..., 15Q
    	v.points[0].FromP3(q)
    	q2 := Point{}
    	q2.Add(q, q)
    	tmpP3 := Point{}
    	tmpP1xP1 := projP1xP1{}
    	for i := 0; i < 7; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 05 21:02:45 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Client-TLSv12-ECDHE-RSA-AES

    00000030  22 c0 bb 31 4e 15 03 03  00 30 00 00 00 00 00 00  |"..1N....0......|
    00000040  00 00 00 00 00 00 00 00  00 00 c8 60 b8 c1 66 9b  |...........`..f.|
    00000050  52 44 3c 26 7f ff 96 a6  21 c7 eb 33 71 f8 40 23  |RD<&....!..3q.@#|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. src/fmt/fmt_test.go

    	{"%.5q", []byte("abcdefghijklmnopqrstuvwxyz"), `"abcde"`},
    	{"%.5x", "abcdefghijklmnopqrstuvwxyz", "6162636465"},
    	{"%.5x", []byte("abcdefghijklmnopqrstuvwxyz"), "6162636465"},
    	{"%.3q", "日本語日本語", `"日本語"`},
    	{"%.3q", []byte("日本語日本語"), `"日本語"`},
    	{"%.1q", "日本語", `"日"`},
    	{"%.1q", []byte("日本語"), `"日"`},
    	{"%.1x", "日本語", "e6"},
    	{"%.1X", []byte("日本語"), "E6"},
    	{"%10.1q", "日本語日本語", `       "日"`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  4. src/regexp/testdata/re2-exhaustive.txt.bz2

    �Z�OjȥM"o:�"8"! �&C��Į����m� ��FdJ��I"$�H�Ѵ�9Vի4��D�Bh��h�Rn86@��ڕ[V��I�-�%��� K]V��""���$��Yy1&����s�&��*J�8!bz�2����I��"l�h�JD�3Q����l����&K�̢��2��+)��!��(�HI�X� �K&�X�j�����Z�#I�i�8,����S��p8NScrچ���� 6�Ș�I$�jb�$��J�L�W2�3&X��fT0���[,�W��"�HwVd62 ��ңc ���,4� ��I�II��$�6�D�$�$�$�l���cH�����dM6B! �� �(4�����ȓ$�IՖ�&�3q�iBF��H�īm�& j�1�6Q[HVՉf��h��I%-iR�j#jJK@�I�b2M��DE%-�i-Wb dBD�H�4�nR�R� ��I5`��K%�, Z������PIiR%"�)�,�$Mn��$��K%��$�Ik\�J�...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 418.2K bytes
    - Viewed (0)
Back to top