- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 349 for Authentication (0.09 sec)
-
okhttp-tls/README.md
.build(); OkHttpClient client = new OkHttpClient.Builder() .sslSocketFactory(clientCertificates.sslSocketFactory(), clientCertificates.trustManager()) .build(); ``` Client Authentication --------------------- The above scenario is representative of most TLS set ups: the client uses certificates to validate the identity of a server. The converse is also possible. Here we create a server that authenticates
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 19:32:33 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/av/AvTargetName.java
*/ package jcifs.ntlmssp.av; import java.nio.charset.Charset; import java.nio.charset.StandardCharsets; /** * NTLMSSP AV pair representing target name information in NTLM authentication. * Contains the name of the target server or service being authenticated against. * * @author mbechler */ public class AvTargetName extends AvPair { /** * */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java
import org.apache.maven.artifact.Artifact; import org.apache.maven.artifact.repository.ArtifactRepository; import org.apache.maven.artifact.repository.ArtifactRepositoryPolicy; import org.apache.maven.artifact.repository.Authentication; import org.apache.maven.artifact.repository.metadata.RepositoryMetadata; import org.apache.maven.repository.Proxy; import org.codehaus.plexus.logging.AbstractLogEnabled; import org.codehaus.plexus.logging.Logger;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Apr 22 22:13:51 UTC 2025 - 12.1K bytes - Viewed (0) -
.github/workflows/scorecard.yml
# - you are installing Scorecard on a *private* repository # To create the PAT, follow the steps in https://github.com/ossf/scorecard-action#authentication-with-pat. # repo_token: ${{ secrets.SCORECARD_TOKEN }} # Public repositories: # - Publish results to OpenSSF REST API for easy access by consumers
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 19:19:31 UTC 2025 - 2.9K bytes - Viewed (0) -
docs/sts/custom-token-identity.md
# AssumeRoleWithCustomToken [](https://slack.min.io) ## Introduction To integrate with custom authentication methods using the [Identity Management Plugin](../iam/identity-management-plugin.md)), MinIO provides an STS API extension called `AssumeRoleWithCustomToken`. After configuring the plugin, use the generated Role ARN with `AssumeRoleWithCustomToken` to get temporary credentials to access object storage.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 27 00:58:09 UTC 2022 - 3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java
* @param proxies The available proxies, may be {@code null}. */ void injectProxy(List<ArtifactRepository> repositories, List<org.apache.maven.settings.Proxy> proxies); /** * Injects the authentication information into the specified repositories. For each repository that is matched by a * server, its credentials will be updated to match the values from the server specification. Repositories without a
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java
@Override public boolean isProjectAware() { return false; } @Override public void setAuthentication(Authentication authentication) {} @Override public Authentication getAuthentication() { return null; } @Override public void setProxy(Proxy proxy) {} @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcSecurityProvider.java
*/ package jcifs.dcerpc; import jcifs.dcerpc.ndr.NdrBuffer; /** * Interface for providing security services for DCE/RPC communications. * This interface abstracts authentication and encryption mechanisms. */ public interface DcerpcSecurityProvider { /** * Wraps outgoing DCERPC message data for security protection * @param outgoing the buffer containing data to be wrapped
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcMessage.java
throw new NdrException("Data representation not supported"); } this.length = buf.dec_ndr_short(); if (buf.dec_ndr_short() != 0) { throw new NdrException("DCERPC authentication not supported"); } this.call_id = buf.dec_ndr_long(); } @Override public void encode(final NdrBuffer buf) throws NdrException { final int start = buf.getIndex();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.3K bytes - Viewed (0) -
docs/pt/docs/tutorial/security/index.md
* Um header. * Um cookie. * `http`: padrão HTTP de sistemas autenticação, incluindo: * `bearer`: um header de `Authorization` com valor de `Bearer` adicionado de um token. Isso é herança do OAuth2. * HTTP Basic authentication. * HTTP Digest, etc. * `oauth2`: todas as formas do OAuth2 para lidar com segurança (chamados "fluxos").
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 4.8K bytes - Viewed (0)