- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 14 for AAD (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/internal/smb2/Smb2TransformHeader.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 9.1K bytes - Click Count (0) -
internal/kms/kes.go
func (c *kesConn) GenerateKey(ctx context.Context, req *GenerateKeyRequest) (DEK, error) { aad, err := req.AssociatedData.MarshalText() if err != nil { return DEK{}, err } name := req.Name if name == "" { name = c.defaultKeyID } dek, err := c.client.GenerateKey(ctx, name, aad) if err != nil { if errors.Is(err, kes.ErrKeyNotFound) { return DEK{}, ErrKeyNotFound }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Aug 18 06:43:03 GMT 2024 - 7.3K bytes - Click Count (0) -
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() { @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16.5K bytes - Click Count (0) -
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) -
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) -
CHANGELOG/CHANGELOG-1.18.md
now supports using Azure network resources (Virtual Network, Load Balancer, Public IP, Route Table, Network Security Group, etc.) in different AAD Tenant and Subscription than those for the Kubernetes cluster. To use the feature, please reference https://kubernetes-sigs.github.io/cloud-provider-azure/install/configs/#host-network-resources-in-different-aad-tenant-and-subscription. ([#88384](https://github.com/kubernetes/kubernetes/pull/88384), [@bowen5](https://github.com/bowen5)) [SIG Cloud Provider]...
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Wed Jun 16 17:18:28 GMT 2021 - 373.2K bytes - Click Count (0) -
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) -
src/main/java/org/codelibs/fess/app/web/base/login/EntraIdCredential.java
import org.codelibs.fess.sso.entraid.EntraIdAuthenticator; import org.codelibs.fess.util.ComponentUtil; import org.lastaflute.web.login.credential.LoginCredential; import com.microsoft.aad.msal4j.IAccount; import com.microsoft.aad.msal4j.IAuthenticationResult; /** * Microsoft Entra ID credential implementation for Fess authentication. * Provides login credential functionality using Entra ID authentication results. */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 7.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
* Uses new entraid.permission.fields key with fallback to legacy aad.permission.fields. * @return Array of permission field names. */ default String[] getEntraIdPermissionFields() { String value = getSystemProperty("entraid.permission.fields", null); if (StringUtil.isBlank(value)) { value = getSystemProperty("aad.permission.fields", "mail"); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 92.3K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.13.md
* Fix AAD support for Azure sovereign cloud in kubectl ([#72143](https://github.com/kubernetes/kubernetes/pull/72143), [@karataliu](https://github.com/karataliu))
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Thu May 05 13:44:43 GMT 2022 - 273.1K bytes - Click Count (0)