Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for AAD (0.01 seconds)

  1. src/test/java/org/codelibs/fess/sso/SsoManagerTest.java

        }
    
        // Test backward compatibility: aad -> entraid mapping
        @Test
        public void test_getAuthenticator_aadMapsToEntraid() {
            // Register an authenticator with the new "entraid" name
            ComponentUtil.register(testAuthenticator, "entraidAuthenticator");
    
            // Use legacy "aad" SSO type
            currentSsoType = "aad";
            ssoManager = new SsoManager() {
                @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.5K bytes
    - Click Count (0)
  2. src/test/java/jcifs/internal/smb2/Smb2TransformHeaderTest.java

            // When
            byte[] aad = transformHeader.getAssociatedData();
    
            // Then
            assertEquals(52, aad.length); // AAD should be same size as transform header
    
            // Verify protocol ID (first 4 bytes) - 0xFD534D42 in little-endian
            assertEquals((byte) 0x42, aad[0]);
            assertEquals((byte) 0x4D, aad[1]);
            assertEquals((byte) 0x53, aad[2]);
            assertEquals((byte) 0xFD, aad[3]);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 12.7K bytes
    - Click Count (0)
  3. internal/kms/kms.go

    	aad, err := req.AssociatedData.MarshalText()
    	if err != nil {
    		return DEK{}, err
    	}
    
    	name := req.Name
    	if name == "" {
    		name = c.defaultKey
    	}
    
    	resp, err := c.client.GenerateKey(ctx, c.enclave, &kms.GenerateKeyRequest{
    		Name:           name,
    		AssociatedData: aad,
    		Length:         32,
    	})
    	if err != nil {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Apr 24 15:33:57 GMT 2025
    - 11.4K bytes
    - Click Count (0)
  4. src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java

            final AEADBlockCipher cipher = createCCMCipher(true, nonce, associatedData.length, message.length);
    
            // Process AAD (not included in output)
            cipher.processAADBytes(associatedData, 0, associatedData.length);
    
            // Process message (will be encrypted)
            final byte[] output = new byte[cipher.getOutputSize(message.length)];
    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)
  5. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

                public String getSystemProperty(final String key) {
                    return systemPropMap.get(key);
                }
            };
    
            // Test fallback to legacy aad.permission.fields key
            systemPropMap.put("aad.permission.fields", "mail,displayName");
            String[] fields = fessConfig.getEntraIdPermissionFields();
            assertEquals(2, fields.length);
            assertEquals("mail", fields[0]);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 25.4K bytes
    - Click Count (0)
Back to Top