Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 348 for wipe (0.02 seconds)

  1. .ci/jobs.t/elastic+elasticsearch+multijob+packaging-tests-windows.yml

        description: "Testing of the Elasticsearch %BRANCH% branch windows packaging test support matrix.\n"
        project-type: matrix
        node: master
        scm:
          - git:
              wipe-workspace: false
        axes:
          - axis:
              type: label-expression
              name: os
              values:
                - "windows-2012-r2"
                - "windows-2016"
                - "windows-2019"
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 15 22:00:26 GMT 2021
    - 1.1K bytes
    - Click Count (0)
  2. src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java

            // When
            context.secureWipeKeys();
    
            // Then - keys should be wiped (we can't directly access them, but method should complete)
            assertDoesNotThrow(() -> context.secureWipeKeys(), "Should handle multiple wipe calls");
        }
    
        @Test
        @DisplayName("Should detect when key rotation is needed based on bytes encrypted")
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 44.1K bytes
    - Click Count (0)
  3. .ci/jobs.t/elastic+elasticsearch+multijob+platform-support-windows.yml

        # Use a hard-coded workspace directory to avoid hitting file path limits with auto-generated workspace path
        child-workspace: "C:\\Users\\jenkins\\workspace\\platform-support\\${BUILD_NUMBER}"
        scm:
          - git:
              wipe-workspace: false
        axes:
          - axis:
              type: label-expression
              name: os
              values:
                - "windows-2012-r2"
                - "windows-2016"
                - "windows-2019"
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jun 09 01:50:21 GMT 2021
    - 1.7K bytes
    - Click Count (0)
  4. .ci/templates.t/matrix-gradle-unix.yml

        name: "{job-name}"
        display-name: "{job-display-name}"
        description: "{job-description}"
        project-type: matrix
        child-workspace: /dev/shm/{job-name}
        node: master
        scm:
          - git:
              wipe-workspace: false
        axes:
          - axis:
              type: slave
              name: nodes
              values:
                - "general-purpose"
          - axis:
              type: yaml
              filename: "{matrix-yaml-file}"
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 881 bytes
    - Click Count (0)
  5. .ci/jobs.t/elastic+elasticsearch+intake.yml

              regex-filter-text: '$ref'
              regex-filter-expression: "^refs/heads/%BRANCH%$"
              cause: Push to GitHub (refs/heads/%BRANCH%)
              silent-response: true
        scm:
          - git:
              wipe-workspace: false
        builders:
          - multijob:
              name: Sanity Check
              projects:
                - name: elastic+elasticsearch+%BRANCH%+intake+multijob+sanity-check
                  kill-phase-on: NEVER
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 2.3K bytes
    - Click Count (0)
  6. .ci/jobs.t/elastic+elasticsearch+periodic+packaging-tests.yml

        description: "Testing of the Elasticsearch %BRANCH% branch packaging tests.\n"
        project-type: multijob
        node: master
        vault: []
        scm:
          - git:
              wipe-workspace: false
        builders:
          - multijob:
              name: Packaging tests
              projects:
                - name: elastic+elasticsearch+%BRANCH%+multijob+packaging-tests-unix
                  kill-phase-on: NEVER
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 999 bytes
    - Click Count (0)
  7. .ci/jobs.t/elastic+elasticsearch+multijob+packaging-tests-upgrade.yml

        description: "Testing of the Elasticsearch %BRANCH% branch packaging test upgrade support matrix.\n"
        project-type: matrix
        node: master
        scm:
          - git:
              wipe-workspace: false
        axes:
          - axis:
              type: label-expression
              name: os
              values:
                - centos-8-packaging
                - ubuntu-20.04-packaging
          - axis:
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue May 25 23:43:40 GMT 2021
    - 1.1K bytes
    - Click Count (0)
  8. src/main/java/jcifs/util/SecureCredentialStorage.java

                System.arraycopy(ciphertext, 0, result, GCM_IV_SIZE, ciphertext.length);
    
                return result;
    
            } finally {
                // Securely wipe plaintext bytes - guaranteed by try-finally
                if (plaintextBytes != null) {
                    SecureKeyManager.secureWipe(plaintextBytes);
                }
            }
        }
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 12.7K bytes
    - Click Count (0)
  9. .ci/jobs.t/elastic+elasticsearch+multijob+packaging-tests-unix.yml

        description: "Testing of the Elasticsearch %BRANCH% branch unix packaging test support matrix.\n"
        project-type: matrix
        node: master
        scm:
          - git:
              wipe-workspace: false
        axes:
          - axis:
              type: label-expression
              name: os
              values:
                - centos-7-packaging
                - centos-8-packaging
                - debian-9-packaging
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Sep 14 17:35:45 GMT 2021
    - 1.3K bytes
    - Click Count (0)
  10. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

        }
    
        /**
         * Securely wipes the password from memory
         */
        public void secureWipePassword() {
            if (this.password != null) {
                // Multi-pass secure wipe of password char array
                Arrays.fill(this.password, '\0');
                Arrays.fill(this.password, '\uFFFF');
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 30.3K bytes
    - Click Count (0)
Back to Top