Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 70 of 241 for encrypto (0.08 seconds)

  1. src/main/java/jcifs/internal/smb2/nego/EncryptionNegotiateContext.java

    package jcifs.internal.smb2.nego;
    
    import jcifs.Configuration;
    import jcifs.internal.SMBProtocolDecodingException;
    import jcifs.internal.util.SMBUtil;
    
    /**
     * SMB2 Encryption Negotiate Context.
     *
     * This negotiate context is used in SMB 3.x to negotiate
     * encryption capabilities and cipher suites.
     *
     * @author mbechler
     */
    public class EncryptionNegotiateContext implements NegotiateContextRequest, NegotiateContextResponse {
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 3.8K bytes
    - Click Count (0)
  2. compat/maven-settings/src/site/apt/index.apt

      * {{{https://maven.apache.org/guides/mini/guide-deployment-security-settings.html} Security and Deployment Settings}},
    
      * {{{https://maven.apache.org/guides/mini/guide-encryption-4.html} Password Encryption}},
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sun Nov 16 18:16:44 GMT 2025
    - 2.1K bytes
    - Click Count (0)
  3. src/test/java/jcifs/internal/smb2/Smb3KeyDerivationTest.java

            // Then
            assertNotNull(encKey, "Encryption key should not be null");
            assertEquals(16, encKey.length, "Encryption key should be 16 bytes");
            assertFalse(Arrays.equals(sessionKey, encKey), "Encryption key should be different from session key");
        }
    
        @Test
        @DisplayName("Should derive different encryption keys for different dialects")
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 17.5K bytes
    - Click Count (0)
  4. docs/tr/docs/deployment/https.md

    * Caddy (sertifika yenilemelerini de yönetebilir)
    * Nginx
    * HAProxy
    
    ## Let's Encrypt { #lets-encrypt }
    
    Let's Encrypt’ten önce bu **HTTPS sertifikaları**, güvenilen üçüncü taraflar tarafından satılırdı.
    
    Bu sertifikalardan birini temin etme süreci zahmetliydi, epey evrak işi gerektirirdi ve sertifikalar oldukça pahalıydı.
    
    Sonra **[Let's Encrypt](https://letsencrypt.org/)** ortaya çıktı.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 14.8K bytes
    - Click Count (0)
  5. src/test/java/jcifs/config/SecurityConfigurationTest.java

        }
    
        /**
         * Test that encryption is properly configured
         */
        @Test
        public void testEncryptionConfiguration() throws CIFSException {
            BaseConfiguration config = new BaseConfiguration(true);
    
            // Verify encryption configuration is available (default is false for compatibility)
            // But can be enabled when needed
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 3.1K bytes
    - Click Count (0)
  6. docs/pt/docs/deployment/https.md

    * Nginx
    * HAProxy
    
    ## Let's Encrypt { #lets-encrypt }
    
    Antes de Let's Encrypt, esses certificados HTTPS eram vendidos por terceiros confiáveis.
    
    O processo de aquisição de um desses certificados costumava ser complicado, exigia bastante papelada e os certificados eram bastante caros.
    
    Mas então o [Let's Encrypt](https://letsencrypt.org/) foi criado.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 14.6K bytes
    - Click Count (0)
  7. docs/es/docs/deployment/https.md

    * Nginx
    * HAProxy
    
    ## Let's Encrypt { #lets-encrypt }
    
    Antes de Let's Encrypt, estos **certificados HTTPS** eran vendidos por terceros.
    
    El proceso para adquirir uno de estos certificados solía ser complicado, requerir bastante papeleo y los certificados eran bastante costosos.
    
    Pero luego se creó **[Let's Encrypt](https://letsencrypt.org/)**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 15.1K bytes
    - Click Count (0)
  8. docs/ru/docs/deployment/https.md

    * Caddy (умеет обновлять сертификаты)
    * Nginx
    * HAProxy
    
    ## Let's Encrypt { #lets-encrypt }
    
    До появления Let's Encrypt эти **HTTPS-сертификаты** продавались доверенными третьими сторонами.
    
    Процесс получения таких сертификатов был неудобным, требовал бумажной волокиты, а сами сертификаты были довольно дорогими.
    
    Затем появился **[Let's Encrypt](https://letsencrypt.org/)**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 22.7K bytes
    - Click Count (0)
  9. apache-maven/src/assembly/maven/bin/mvnsh.cmd

    @REM specific language governing permissions and limitations
    @REM under the License.
    
    @REM -----------------------------------------------------------------------------
    @REM Apache Maven Encrypt Script
    @REM
    @REM Environment Variable Prerequisites
    @REM
    @REM   JAVA_HOME           (Optional) Points to a Java installation.
    @REM   MAVEN_BATCH_ECHO    (Optional) Set to 'on' to enable the echoing of the batch commands.
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Dec 17 09:50:45 GMT 2024
    - 1.7K bytes
    - Click Count (0)
  10. src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateRequestTest.java

        @CsvSource({ "true, true, SMB311, 2", // DFS + Encryption
                "false, true, SMB311, 1", // Encryption only
                "true, false, SMB311, 1", // DFS only
                "false, false, SMB311, 0", // Neither
                "true, true, SMB210, 1", // DFS only (no encryption for SMB2)
                "false, true, SMB210, 0" // Neither (no encryption for SMB2)
        })
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 20.7K bytes
    - Click Count (0)
Back to Top