- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for secureWipe (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/util/SecureKeyManager.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 21.5K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 35.5K bytes - Click Count (0) -
src/main/java/jcifs/util/SecureCredentialStorage.java
return result; } finally { // Securely wipe plaintext bytes - guaranteed by try-finally if (plaintextBytes != null) { SecureKeyManager.secureWipe(plaintextBytes); } } } public char[] decryptCredentials(byte[] ciphertext) throws GeneralSecurityException { checkNotDestroyed();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) -
src/test/java/jcifs/util/SecureKeyManagerTest.java
SecureKeyManager.secureWipe(data); // Verify data is wiped for (byte b : data) { assertEquals(0, b, "All bytes should be zero after wipe"); } } @Test public void testSecureWipeNull() { // Should not throw SecureKeyManager.secureWipe(null); } @TestCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 14.2K bytes - Click Count (0)