Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 1,623 for usar (0.09 sec)

  1. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

        /**
         * Returns the list of user addresses.
         *
         * @return list of user InetAddress objects
         */
        public ArrayList<InetAddress> getUserAddresses() {
            return this.userAddresses;
        }
    
        /**
         * Returns the list of user authorization data.
         *
         * @return list of KerberosAuthData objects
         */
        public List<KerberosAuthData> getUserAuthorizations() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/NtlmNtHashAuthenticator.java

         *            NT password hash
         */
        public NtlmNtHashAuthenticator(final String domain, final String username, final byte[] passwordHash) {
            super(domain, username, (String) null, AuthenticationType.USER);
            if (passwordHash == null || passwordHash.length != 16) {
                throw new IllegalArgumentException("Password hash must be provided, expected length 16 byte");
            }
            this.ntHash = passwordHash;
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  3. docs/sts/web-identity.py

        tokens = json.loads(id_token_response.text)
        id_token = tokens['id_token']
    
        response = sts_client.assume_role_with_web_identity(
            RoleArn='arn:aws:iam::123456789012:user/svc-internal-api',
            RoleSessionName='test',
            WebIdentityToken=id_token,
            DurationSeconds=3600
        )
    
        s3_resource = boto3.resource('s3',
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Jul 28 01:37:51 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  4. docs/site-replication/run-multi-site-minio-idp.sh

    if [ "${val}" != "val1" ]; then
    	echo "expected bucket tag to have replicated, exiting..."
    	exit_1
    fi
    # Create user with policy consoleAdmin on minio1
    ./mc admin user add minio1 foobarx foobar123
    if [ $? -ne 0 ]; then
    	echo "adding user failed, exiting.."
    	exit_1
    fi
    ./mc admin policy attach minio1 consoleAdmin --user=foobarx
    if [ $? -ne 0 ]; then
    	echo "adding policy mapping failed, exiting.."
    	exit_1
    fi
    sleep 10
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Sep 24 08:03:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/dtyp/SecurityDescriptor.java

         */
        public final SID getOwnerGroupSid() {
            return this.ownerGroupSid;
        }
    
        /**
         * Gets the owner user SID of this security descriptor.
         *
         * @return the security identifier of the owner user
         */
        public final SID getOwnerUserSid() {
            return this.ownerUserSid;
        }
    
        /**
         * Decodes a security descriptor from a byte buffer.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  6. docs/bn/docs/environment-variables.md

    উদাহরণস্বরূপ, `PATH` ভেরিয়েবল নিচের মতো দেখতে হতে পারেঃ
    
    //// tab | লিনাক্স, ম্যাকওএস
    
    ```plaintext
    /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
    ```
    
    তারমানে হলো সিস্টেম প্রোগ্রামগুলোকে নিচের ডিরেক্টরিগুলোতে খুঁজবেঃ
    
    * `/usr/local/bin`
    * `/usr/bin`
    * `/bin`
    * `/usr/sbin`
    * `/sbin`
    
    ////
    
    //// tab | উইন্ডোজ
    
    ```plaintext
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Jun 05 08:15:56 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/NtlmUtil.java

         */
        public static byte[] getLMv2Response(final String domain, final String user, final String password, final byte[] challenge,
                final byte[] clientChallenge) throws GeneralSecurityException {
            return getLMv2Response(domain, user, getNTHash(password), challenge, clientChallenge);
        }
    
        /**
         * Creates the LMv2 response for the supplied information.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/pac/Pac.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jcifs.util.Hexdump;
    
    /**
     * Privilege Attribute Certificate (PAC) decoder for Kerberos tickets.
     * Parses and validates PAC data structures containing user authorization information
     * from Active Directory Kerberos tickets.
     */
    public class Pac {
    
        private static final Logger log = LoggerFactory.getLogger(Pac.class);
    
        private PacLogonInfo logonInfo;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/ntlmssp/Type3Message.java

         * Returns the username for the authenticating user.
         *
         * @return A <code>String</code> containing the user for this message.
         */
        public String getUser() {
            return this.user;
        }
    
        /**
         * Sets the user for this message.
         *
         * @param user
         *            The user.
         */
        public void setUser(final String user) {
            this.user = user;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/dtyp/ACE.java

     * we recommend reading the section on Access Control in Keith Brown's
     * "The .NET Developer's Guide to Windows Security" (which is also
     * available online).
     * <p>
     * Direct ACEs are evaluated first in order. The SID of the user performing
     * the operation and the desired access bits are compared to the SID
     * and access mask of each ACE. If the SID matches, the allow/deny flags
     * and access mask are considered. If the ACE is a "deny"
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.6K bytes
    - Viewed (0)
Back to top