- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 478 for token5 (0.1 sec)
-
src/main/java/jcifs/spnego/SpnegoToken.java
} /** * Encodes this SPNEGO token to a byte array * @return the encoded token bytes */ public abstract byte[] toByteArray(); /** * Parses the provided token bytes to populate this SPNEGO token * @param token the token bytes to parse * @throws IOException if parsing fails */ protected abstract void parse(byte[] token) throws IOException;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/FessApiAdminAction.java
* This class extends FessApiAction to provide admin-specific functionality * including enhanced access control for administrative operations. * * <p>Admin API actions require special permissions and access tokens * that are validated against the admin role configuration.</p> */ public abstract class FessApiAdminAction extends FessApiAction { /** Logger instance for this class. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 2.3K bytes - Viewed (0) -
src/test/java/jcifs/pac/kerberos/KerberosTokenTest.java
baos.write(0x60); // APPLICATION 0 baos.write(content.length); baos.write(content); byte[] token = baos.toByteArray(); assertThrows(PACDecodingException.class, () -> new KerberosToken(token)); } // Helper methods to create test tokens private byte[] createGssApiWrapper(ASN1ObjectIdentifier oid, byte[] data) throws IOException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/HttpHeaders.kt
private val TOKEN_DELIMITERS = "\t ,=".encodeUtf8() /** * Parse RFC 7235 challenges. This is awkward because we need to look ahead to know how to * interpret a token. * * For example, the first line has a parameter name/value pair and the second line has a single * token68: * * ``` * WWW-Authenticate: Digest foo=bar * WWW-Authenticate: Digest foo= * ``` *
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/jcifs/spnego/NegTokenTarg.java
setMechanismListMIC(mechanismListMIC); } /** * Constructs a NegTokenTarg by parsing the provided token bytes * @param token the SPNEGO token bytes to parse * @throws IOException if parsing fails */ public NegTokenTarg(final byte[] token) throws IOException { parse(token); } /** * Gets the negotiation result code * @return the result code */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/accesstoken/AdminAccesstokenAction.java
/** * The role for this action. */ public static final String ROLE = "admin-accesstoken"; /** * The token parameter. */ public static final String TOKEN = "token"; /** * The expires parameter. */ public static final String EXPIRES = "expires"; /** * The expired time parameter. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 16.9K bytes - Viewed (0) -
docs/em/docs/tutorial/security/simple-oauth2.md
/// ## ๐จ ๐ค ๐จ `token` ๐ ๐ ๐ป ๐. โซ๏ธ ๐ โ๏ธ `token_type`. ๐ ๐ผ, ๐ฅ โ๏ธ "๐จ" ๐ค, ๐ค ๐ ๐ "`bearer`". & โซ๏ธ ๐ โ๏ธ `access_token`, โฎ๏ธ ๐ป โ ๐ ๐ ๐ค. ๐ ๐ ๐ผ, ๐ฅ ๐ ๐ ๐ & ๐จ ๐ `username` ๐ค. /// tip โญ ๐, ๐ ๐ ๐ ๐ฐ ๐ ๐ ๏ธ, โฎ๏ธ ๐ #๏ธโฃ & <abbr title="JSON Web Tokens">๐ฅ</abbr> ๐ค. โ๏ธ ๐, โก๏ธ ๐ฏ ๐ ๐ฏ โน ๐ฅ ๐ช. ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.7K bytes - Viewed (0) -
docs/de/docs/advanced/security/oauth2-scopes.md
<img src="/img/tutorial/security/image11.png"> ## JWT-Token mit Scopes รndern Sie nun die Token-*Pfadoperation*, um die angeforderten Scopes zurรผckzugeben. Wir verwenden immer noch dasselbe `OAuth2PasswordRequestForm`. Es enthรคlt eine Eigenschaft `scopes` mit einer `list`e von `str`s fรผr jeden Scope, den es im Request erhalten hat. Und wir geben die Scopes als Teil des JWT-Tokens zurรผck. /// danger | Gefahr
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 15.1K bytes - Viewed (0) -
docs/sts/web-identity.py
print('body: ' + id_token_response.text) # we can now use the id_token as much as we want to access protected resources. 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',
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Jul 28 01:37:51 UTC 2021 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java
*/ @Resource protected MessageManager messageManager; /** * Service for managing API access tokens including validation and authentication. * Used to verify token-based authentication for API requests. */ @Resource protected AccessTokenService accessTokenService; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.8K bytes - Viewed (0)