- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 121 for jwt (0.56 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/zh/docs/tutorial/security/simple-oauth2.md
返回内容还应包含 `access_token` 字段,它是包含权限 Token 的字符串。 本例只是简单的演示,返回的 Token 就是 `username`,但这种方式极不安全。 /// tip | 提示 下一章介绍使用哈希密码和 <abbr title="JSON Web Tokens - JSON Web 令牌">JWT</abbr> Token 的真正安全机制。 但现在,仅关注所需的特定细节。 /// {* ../../docs_src/security/tutorial003_an_py310.py hl[87] *} /// tip | 提示 按规范的要求,应像本示例一样,返回带有 `access_token` 和 `token_type` 的 JSON 对象。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 9K bytes - Click Count (0) -
cmd/auth-handler_test.go
"Content-Encoding": []string{streamingContentEncoding}, }, Method: http.MethodPut, Body: nopCloser, }, authT: authTypeStreamingSigned, }, // Test case - 2 // Check for JWT header. { req: &http.Request{ URL: &url.URL{ Host: "127.0.0.1:9000", Scheme: httpScheme, Path: SlashSeparator, }, Header: http.Header{Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed Apr 09 14:28:39 GMT 2025 - 15.4K bytes - Click Count (0) -
docs/sts/client-grants.md
not require the use of MinIO default credentials. Therefore, client application can be distributed that requests temporary security credentials without including MinIO default credentials. Instead, the identity of the caller is validated by using a JWT access token from the identity provider. The temporary security credentials returned by this API consists of an access key, a secret key, and a security token. Applications can use these temporary security credentials to sign calls to MinIO API operations....
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 7.2K bytes - Click Count (0) -
docs/ja/docs/features.md
### セキュリティと認証 { #security-and-authentication } セキュリティと認証が統合されています。データベースやデータモデルとの妥協はありません。 OpenAPI で定義されたすべてのセキュリティスキームをサポートします: * HTTP Basic。 * **OAuth2**(**JWT トークン** も可)。チュートリアル [JWT を用いた OAuth2](tutorial/security/oauth2-jwt.md) を確認してください。 * API キー(以下の場所): * ヘッダー。 * クエリパラメータ。 * クッキー、など。 さらに、Starlette のすべてのセキュリティ機能(**セッション Cookie** を含む)も利用できます。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 11.6K bytes - Click Count (0) -
cmd/bucket-policy.go
} for key, values := range cloneURLValues { if existingValues, found := args[key]; found { args[key] = append(existingValues, values...) } else { args[key] = values } } // JWT specific values // // Add all string claims for k, v := range claims { vStr, ok := v.(string) if ok { // Trim any LDAP specific prefixCreated: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 7.9K bytes - Click Count (0) -
docs/ja/docs/tutorial/security/simple-oauth2.md
そして `access_token` を含め、その中にアクセストークンの文字列を入れます。 この単純な例では、完全に安全ではありませんが、トークンとして同じ `username` をそのまま返します。 /// tip | 豆知識 次の章では、パスワードハッシュ化と <abbr title="JSON Web Tokens - JSON Web Token">JWT</abbr> トークンを使った本当に安全な実装を見ます。 しかし今は、必要な特定の詳細に集中しましょう。 /// {* ../../docs_src/security/tutorial003_an_py310.py hl[87] *} /// tip | 豆知識
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 12.1K bytes - Click Count (0) -
scripts/general-llm-prompt.md
``` Examples: Source (English): ``` <abbr title="JSON Web Tokens">JWT</abbr> <abbr title="Enumeration">Enum</abbr> <abbr title="Asynchronous Server Gateway Interface">ASGI</abbr> ``` Result (German): ``` <abbr title="JSON Web Tokens">JWT</abbr> <abbr title="Enumeration">Enum</abbr> <abbr title="Asynchrones Server-Gateway-Interface">ASGI</abbr> ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Mar 18 10:55:36 GMT 2026 - 14.6K bytes - Click Count (0) -
cmd/iam.go
// encountering this LDAP user. if _, ok := parentUserToCredsMap[cred.ParentUser]; !ok { // Try to find the ldapUsername for this // parentUser by extracting JWT claims var ( jwtClaims *jwt.MapClaims err error ) if cred.SessionToken == "" { continue } if cred.IsServiceAccount() {
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed Oct 15 17:00:45 GMT 2025 - 76.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticatorTest.java
import org.codelibs.fess.util.ComponentUtil; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.TestInfo; /** * Unit tests for {@link OpenIdConnectAuthenticator}. * Tests JWT parsing, Base64 decoding, and configuration handling. */ public class OpenIdConnectAuthenticatorTest extends UnitFessTestCase { private OpenIdConnectAuthenticator authenticator;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:54:47 GMT 2026 - 11K bytes - Click Count (0) -
android/guava/src/com/google/common/net/MediaType.java
/** * For <a href="https://tools.ietf.org/html/7519">JWT objects using the compact Serialization</a>. * * @since 32.0.0 */ public static final MediaType JWT = createConstant(APPLICATION_TYPE, "jwt"); /** * The <a href="http://www.w3.org/TR/appmanifest/">Manifest for a web application</a>. * * @since 19.0 */
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Oct 02 01:46:40 GMT 2025 - 48K bytes - Click Count (0)