Search Options

Results per page
Sort
Preferred Languages
Advance

Results 341 - 350 of 751 for decryption (1.12 sec)

  1. src/main/java/jcifs/ntlmssp/NtlmFlags.java

        int NTLMSSP_NEGOTIATE_VERSION = 0x2000000;
    
        /**
         * Indicates that 128-bit encryption is supported.
         */
        int NTLMSSP_NEGOTIATE_128 = 0x20000000;
    
        /**
         * Request explicit key exchange
         */
        int NTLMSSP_NEGOTIATE_KEY_EXCH = 0x40000000;
    
        /**
         * Indicates that 56-bit encryption is supported.
         */
        int NTLMSSP_NEGOTIATE_56 = 0x80000000;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess_config.web_config/web_config.json

          },
          "createdTime": {
            "type": "long"
          },
          "updatedBy": {
            "type": "keyword"
          },
          "updatedTime": {
            "type": "long"
          },
          "description" : {
            "type": "text",
            "analyzer": "standard_analyzer"
          }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  3. .asf.yaml

    # see https://s.apache.org/asfyaml
    github:
      description: "Apache Maven core"
      homepage: https://maven.apache.org/ref/current
      labels:
        - java
        - build-management
        - apache-maven
        - maven
        - hacktoberfest
      enabled_merge_buttons:
        squash: true
        merge: false
        rebase: true
      autolink_jira:
        - MNG
      pull_requests:
        del_branch_on_merge: true
      protected_branches:
        master: {}
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Aug 30 12:16:51 UTC 2025
    - 668 bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/ACE.java

     * based on these entries.
     * <p>
     * To fully understand the information exposed by this class a description
     * of the access check algorithm used by Windows is required. The following
     * is a basic description of the algorithm. For a more complete description
     * we recommend reading the section on Access Control in Keith Brown's
     * "The .NET Developer's Guide to Windows Security" (which is also
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/configurations/SanityCheck.kt

    class SanityCheck(
        model: CIBuildModel,
        stage: Stage,
    ) : OsAwareBaseGradleBuildType(os = Os.LINUX, stage = stage, init = {
            id(buildTypeId(model))
            name = "Sanity Check"
            description = "Static code analysis, checkstyle, release notes verification, etc."
    
            features {
                publishBuildStatusToGithub(model)
            }
    
            applyDefaults(
                model,
                this,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Aug 25 20:21:47 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java

         * @throws IOException if the stream cannot be created or opened
         */
        @Nonnull
        InputStream openStream() throws IOException;
    
        /**
         * Returns a human-readable description of where this source came from,
         * used primarily for error messages and debugging.
         * <p>
         * Examples of locations:
         * <ul>
         *   <li>Absolute file path: {@code /path/to/pom.xml}</li>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 29 09:46:53 UTC 2025
    - 4K bytes
    - Viewed (0)
  7. apache-maven/pom.xml

        <version>4.1.0-SNAPSHOT</version>
      </parent>
    
      <artifactId>apache-maven</artifactId>
      <packaging>pom</packaging>
    
      <name>Apache Maven Distribution</name>
      <description>The Apache Maven distribution, source and binary, in zip and tar.gz formats.</description>
    
      <dependencies>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-cli</artifactId>
        </dependency>
        <dependency>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Sep 06 21:30:13 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  8. src/test/java/jcifs/util/SecureCredentialStorageTest.java

            byte[] encrypted = storage.encryptCredentials(null);
            assertNull(encrypted, "Encrypting null should return null");
    
            char[] decrypted = storage.decryptCredentials(null);
            assertNull(decrypted, "Decrypting null should return null");
        }
    
        @Test
        public void testEncryptDecryptLongPassword() throws Exception {
            // Test with very long password
            char[] plaintext = new char[10000];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  9. src/main/config/es/fess_config_file_config.json

                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
              "depth" : {
                "type" : "integer"
              },
              "description" : {
                "type" : "text"
              },
              "excludedDocPaths" : {
                "type" : "keyword"
              },
              "excludedPaths" : {
                "type" : "keyword"
              },
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/configurations/BuildDistributions.kt

        model: CIBuildModel,
        stage: Stage,
    ) : OsAwareBaseGradleBuildType(os = LINUX, stage = stage, init = {
            id("${model.projectId}_BuildDistributions")
            name = "Build Distributions"
            description = "Creation and verification of the distribution and documentation"
    
            applyDefaults(
                model,
                this,
                "packageBuild",
                extraParameters =
                    listOf(
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Aug 25 20:21:47 UTC 2025
    - 1.3K bytes
    - Viewed (0)
Back to top