Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for 2P (0.11 sec)

  1. src/crypto/internal/nistec/fiat/p256.go

    func (e *P256Element) SetBytes(v []byte) (*P256Element, error) {
    	if len(v) != p256ElementLen {
    		return nil, errors.New("invalid P256Element encoding")
    	}
    
    	// Check for non-canonical encodings (p + k, 2p + k, etc.) by comparing to
    	// the encoding of -1 mod p, so p - 1, the highest canonical encoding.
    	var minusOneEncoding = new(P256Element).Sub(
    		new(P256Element), new(P256Element).One()).Bytes()
    	for i := range v {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/fiat/p224.go

    func (e *P224Element) SetBytes(v []byte) (*P224Element, error) {
    	if len(v) != p224ElementLen {
    		return nil, errors.New("invalid P224Element encoding")
    	}
    
    	// Check for non-canonical encodings (p + k, 2p + k, etc.) by comparing to
    	// the encoding of -1 mod p, so p - 1, the highest canonical encoding.
    	var minusOneEncoding = new(P224Element).Sub(
    		new(P224Element), new(P224Element).One()).Bytes()
    	for i := range v {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/fiat/p384.go

    func (e *P384Element) SetBytes(v []byte) (*P384Element, error) {
    	if len(v) != p384ElementLen {
    		return nil, errors.New("invalid P384Element encoding")
    	}
    
    	// Check for non-canonical encodings (p + k, 2p + k, etc.) by comparing to
    	// the encoding of -1 mod p, so p - 1, the highest canonical encoding.
    	var minusOneEncoding = new(P384Element).Sub(
    		new(P384Element), new(P384Element).One()).Bytes()
    	for i := range v {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/fiat/p521.go

    func (e *P521Element) SetBytes(v []byte) (*P521Element, error) {
    	if len(v) != p521ElementLen {
    		return nil, errors.New("invalid P521Element encoding")
    	}
    
    	// Check for non-canonical encodings (p + k, 2p + k, etc.) by comparing to
    	// the encoding of -1 mod p, so p - 1, the highest canonical encoding.
    	var minusOneEncoding = new(P521Element).Sub(
    		new(P521Element), new(P521Element).One()).Bytes()
    	for i := range v {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Client-TLSv11-ECDHE-ECDSA-AES

    00000020  68 cf 1e d4 e0 b2 7c 78  80 76 18 c7 a5 cf 57 2d  |h.....|x.v....W-|
    00000030  1e 3d 17 b2 ce 44 93 76  38 91 4b d0 7f 09 00 2f  |.=...D.v8.K..../|
    00000040  c2 da c7 32 70 de fd cb  a4 99 90                 |...2p......|
    >>> Flow 5 (client to server)
    00000000  17 03 02 00 30 00 00 00  00 00 00 00 00 00 00 00  |....0...........|
    00000010  00 00 00 00 00 86 40 c2  e7 d4 56 43 6b e0 e4 96  |******@****.***...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/fiat/generate.go

    func (e *{{ .Element }}) SetBytes(v []byte) (*{{ .Element }}, error) {
    	if len(v) != {{ .Prefix }}ElementLen {
    		return nil, errors.New("invalid {{ .Element }} encoding")
    	}
    
    	// Check for non-canonical encodings (p + k, 2p + k, etc.) by comparing to
    	// the encoding of -1 mod p, so p - 1, the highest canonical encoding.
    	var minusOneEncoding = new({{ .Element }}).Sub(
    		new({{ .Element }}), new({{ .Element }}).One()).Bytes()
    	for i := range v {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  7. src/fmt/fmt_test.go

    	// %p with pointers
    	{"%p", (*int)(nil), "0x0"},
    	{"%#p", (*int)(nil), "0"},
    	{"%p", &intVar, "0xPTR"},
    	{"%#p", &intVar, "PTR"},
    	{"%p", &array, "0xPTR"},
    	{"%p", &slice, "0xPTR"},
    	{"%8.2p", (*int)(nil), "    0x00"},
    	{"%-20.16p", &intVar, "0xPTR  "},
    	// %p on non-pointers
    	{"%p", make(chan int), "0xPTR"},
    	{"%p", make(map[int]int), "0xPTR"},
    	{"%p", func() {}, "0xPTR"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{"7M", decQuantity(7, 6, DecimalSI)},
    		{"6G", decQuantity(6, 9, DecimalSI)},
    		{"5T", decQuantity(5, 12, DecimalSI)},
    		{"40T", decQuantity(4, 13, DecimalSI)},
    		{"300T", decQuantity(3, 14, DecimalSI)},
    		{"2P", decQuantity(2, 15, DecimalSI)},
    		{"1E", decQuantity(1, 18, DecimalSI)},
    
    		// Decimal exponents
    		{"1E-3", decQuantity(1, -3, DecimalExponent)},
    		{"1e3", decQuantity(1, 3, DecimalExponent)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. gradle/verification-keyring.keys

    wpESdE2qqUP+1JDDOO3UW/W6mGsIn+DpEPWtOgcjesCgkwsrymUHAA1oQmbNiPSx
    EHFwhUYxjVNlB6O3Qj9/3JFVzv4XaVaPHpp5P4ZroA/77S0b10DPt5oUZ5hvo55N
    mJCwko0dtlVDUHb1f++x/oL3q3QS5Fw/BT6QFgDp/Doe6fbnri0W6gopiE5VB+2p
    XuRYkQApKYkrVD3vdUtZqEyQMNzSTUTVT+9tpqyJYVN8mqwKPPJ8ROw+rE7mxngi
    gRF/mKja2Q==
    =R9HI
    -----END PGP PUBLIC KEY BLOCK-----
    
    pub    466CAED6E0747D50
    uid    Kristian Rosenvold <******@****.***>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 525.2K bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

    54`6OY\356?]\033\2256kk\343?\340\332\320\030\256\021\223?\027\304\005u\020\025\356?\023\303m\315\277\205\356?\2440|\240\354`\327?\264\303|\276mc\354?|\276\206\277/\344\337?\215\355:\366Ae\354?\270\2027\322\275G\314?2*\254\227~\367\324?v\351,mu2\344?2P\212\212\r\001\332?\234\214G}\246\371\351?\tAc\2622/\340?wo\344y\320\264\350?O\325\245P\004W\355?\001\216^\326\363\031\341?\013>mI\212!\344?Q\212\350\231J`\356?\300\'r\343@\n\325?4<\276\223\020\222\324?\214k\3501\007\370\341?\264\270\0305\027\335\35...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
Back to top