Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 23 for p224 (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. lib/fips140/v1.26.0.zip

    bigmod.NewModulus(order) if err != nil { panic(err) } two, _ := bigmod.NewNat().SetBytes([]byte{2}, c.N) c.nMinus2 = bigmod.NewNat().ExpandFor(c.N).Sub(two, c.N).Bytes(c.N) } func P224() *Curve[*nistec.P224Point] { return _P224() } var _P224 = sync.OnceValue(func() *Curve[*nistec.P224Point] { c := &Curve[*nistec.P224Point]{ curve: p224, newPoint: nistec.NewP224Point, } precomputeParams(c, p224Order) return c }) var p224Order = []byte{ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,...
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Jan 08 17:58:32 GMT 2026
    - 660.3K bytes
    - Click Count (0)
  2. src/test/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequestTest.java

            when(mockInputData.size()).thenReturn(100);
            request.setInputData(mockInputData);
    
            int size = request.size();
    
            // Base size 120 + 100 = 220, aligned to 8 = 224
            assertEquals(224, size);
            verify(mockInputData).size();
        }
    
        @Test
        @DisplayName("Test size calculation with output data")
        void testSizeWithOutputData() {
            setupMockConfig();
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 14.3K bytes
    - Click Count (0)
  3. src/test/java/jcifs/http/NtlmSspTest.java

            // NTLMSSP signature
            System.arraycopy("NTLMSSP\0".getBytes(), 0, message, 0, 8);
    
            // Type 3 indicator
            message[8] = 0x03;
    
            // LM Response (24 bytes at offset 64)
            message[12] = 24; // Length
            message[13] = 0;
            message[14] = 24; // Max Length
            message[15] = 0;
            message[16] = 64; // Offset
            message[17] = 0;
            message[18] = 0;
            message[19] = 0;
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 21 04:51:33 GMT 2025
    - 11.4K bytes
    - Click Count (1)
  4. src/main/java/jcifs/smb/NtlmUtil.java

            final byte[] p21 = new byte[21];
            final byte[] p24 = new byte[24];
            System.arraycopy(passwordHash, 0, p21, 0, 16);
            NtlmUtil.E(p21, challenge, p24);
            return p24;
        }
    
        /**
         * Generate the ANSI DES hash for the password associated with these credentials.
         *
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 15.1K bytes
    - Click Count (0)
  5. impl/maven-core/src/main/java/org/apache/maven/AbstractMavenLifecycleParticipant.java

     * indicate at what lifecycle point it is being called.
     *
     * @see <a href="https://maven.apache.org/examples/maven-3-lifecycle-extensions.html">example</a>
     * @see <a href="https://issues.apache.org/jira/browse/MNG-4224">MNG-4224</a>
     * @since 3.0-alpha-3
     */
    public abstract class AbstractMavenLifecycleParticipant {
    
        /**
         * Invoked after all MavenProject instances have been created.
         *
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 2.9K bytes
    - Click Count (0)
  6. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

            if (passwordLength > 14) {
                passwordLength = 14;
            }
            System.arraycopy(passwordBytes, 0, p14, 0, passwordLength);
            E(p14, S8, p21);
            E(p21, challenge, p24);
            return p24;
        }
    
        /**
         * Generate the Unicode MD4 hash for the password associated with these credentials.
         *
         * @param password the password to hash
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 26.7K bytes
    - Click Count (0)
  7. docs/ru/docs/how-to/extending-openapi.md

    ### Измените схему OpenAPI { #modify-the-openapi-schema }
    
    Теперь можно добавить расширение ReDoc, добавив кастомный `x-logo` в «объект» `info` в схеме OpenAPI:
    
    {* ../../docs_src/extending_openapi/tutorial001_py310.py hl[22:24] *}
    
    ### Кэшируйте схему OpenAPI { #cache-the-openapi-schema }
    
    Вы можете использовать свойство `.openapi_schema` как «кэш» для хранения сгенерированной схемы.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  8. docs/tr/docs/how-to/extending-openapi.md

    Artık OpenAPI şemasındaki `info` "object"'ine özel bir `x-logo` ekleyerek ReDoc extension'ını ekleyebilirsiniz:
    
    {* ../../docs_src/extending_openapi/tutorial001_py310.py hl[22:24] *}
    
    ### OpenAPI Şemasını Cache'leme { #cache-the-openapi-schema }
    
    Ürettiğiniz şemayı saklamak için `.openapi_schema` özelliğini bir "cache" gibi kullanabilirsiniz.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 3.5K bytes
    - Click Count (0)
  9. docs/en/docs/how-to/extending-openapi.md

    ### Modify the OpenAPI schema { #modify-the-openapi-schema }
    
    Now you can add the ReDoc extension, adding a custom `x-logo` to the `info` "object" in the OpenAPI schema:
    
    {* ../../docs_src/extending_openapi/tutorial001_py310.py hl[22:24] *}
    
    ### Cache the OpenAPI schema { #cache-the-openapi-schema }
    
    You can use the property `.openapi_schema` as a "cache", to store your generated schema.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 3.3K bytes
    - Click Count (0)
  10. docs/uk/docs/how-to/extending-openapi.md

    ### Змінити схему OpenAPI { #modify-the-openapi-schema }
    
    Тепер можна додати розширення ReDoc, додавши власний `x-logo` до «об'єкта» `info` у схемі OpenAPI:
    
    {* ../../docs_src/extending_openapi/tutorial001_py310.py hl[22:24] *}
    
    ### Кешувати схему OpenAPI { #cache-the-openapi-schema }
    
    Ви можете використовувати властивість `.openapi_schema` як «кеш» для збереження згенерованої схеми.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 4.7K bytes
    - Click Count (0)
Back to Top