Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for verification (0.05 sec)

  1. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java

         *
         * @return error status code
         */
        @Override
        public final int getErrorCode() {
            return getStatus();
        }
    
        /**
         *
         * @return whether signature verification failed
         */
        @Override
        public final boolean isVerifyFailed() {
            return this.verifyFailed;
        }
    
        /**
         * {@inheritDoc}
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

                System.arraycopy(buffer, 4, payload, 0, len);
                setRawPayload(payload);
            }
    
            if (!verifySignature(buffer, 4, len)) {
                throw new SMBProtocolDecodingException("Signature verification failed for " + this.getClass().getName());
            }
            return len;
        }
    
        /**
         * Writes the AndX wire format to buffer
         * @param dst the destination buffer
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java

                    byte[] nonce = ctx.generateNonce();
                    assertNotNull(nonce);
                }
            });
    
            // Then - Context should be closed and keys wiped
            // Verification would depend on implementation details
        }
    
        @Test
        @DisplayName("Should handle multiple close() calls gracefully")
        void testMultipleCloseCallsSafe() {
            // Given
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 44.1K bytes
    - Viewed (0)
  4. docs/fr/docs/index.md

    ```Python
    item: Item
    ```
    
    ... et avec cette déclaration unique, vous obtenez :
    
    * Une assistance dans votre IDE, notamment :
        * la complétion.
        * la vérification des types.
    * La validation des données :
        * des erreurs automatiques et claires lorsque les données ne sont pas valides.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 22K bytes
    - Viewed (0)
  5. cmd/object-handlers.go

    			w.Header()[xhttp.AmzDeleteMarker] = []string{strconv.FormatBool(objInfo.DeleteMarker)}
    		}
    
    		QueueReplicationHeal(ctx, bucket, objInfo, 0)
    		// do an additional verification whether object exists when object is deletemarker and request
    		// is from replication
    		if opts.CheckDMReplicationReady {
    			topts := opts
    			topts.VersionID = ""
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Sep 07 16:13:09 UTC 2025
    - 120.6K bytes
    - Viewed (0)
  6. docs/es/docs/tutorial/security/oauth2-jwt.md

    Y tus usuarios podrían iniciar sesión desde tu aplicación Django o desde tu aplicación **FastAPI**, al mismo tiempo.
    
    ///
    
    ## Hash y verificación de contraseñas
    
    Importa las herramientas que necesitamos de `passlib`.
    
    Crea un "contexto" de PassLib. Este es el que se usará para hacer el hash y verificar las contraseñas.
    
    /// tip | Consejo
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  7. README.md

    ```
    
    ### Code Quality and Formatting
    ```bash
    # Format code according to project standards
    mvn formatter:format
    
    # Apply license headers to source files
    mvn license:format
    
    # Build JAR with all verifications
    mvn clean package
    
    # Generate test coverage report
    mvn verify
    # Coverage report available at: target/site/jacoco/index.html
    ```
    
    ### Project Structure
    ```
    corelib/
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sun Aug 31 02:56:02 UTC 2025
    - 12.7K bytes
    - Viewed (0)
Back to top