- Sort Score
- Num 10 results
- Language All
Results 351 - 360 of 1,006 for Security (0.06 seconds)
-
src/test/java/jcifs/dcerpc/DcerpcHandleTest.java
} } @Nested @DisplayName("Configuration Tests") class ConfigurationTests { @Test @DisplayName("Should set security provider") void testSetDcerpcSecurityProvider() { // When: Setting security provider handle.setDcerpcSecurityProvider(mockSecurityProvider); // Then: Should not throw exception (private field, no direct verification)Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 15.3K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/security/index.md
# 安全性 { #security } 有許多方式可以處理安全性、身分驗證與授權。 而且這通常是一個複雜且「困難」的主題。 在許多框架與系統中,光是處理安全性與身分驗證就要花費大量心力與程式碼(很多情況下可能佔了全部程式碼的 50% 以上)。 **FastAPI** 提供多種工具,讓你能以標準方式輕鬆、快速地處理「安全性」,而不必先研究並學會所有安全性規範。 但在此之前,先釐清幾個小概念。 ## 急著上手? { #in-a-hurry } 如果你不在意這些術語,只需要立刻加入以使用者名稱與密碼為基礎的身分驗證與安全性,就直接跳到後續章節。 ## OAuth2 { #oauth2 } OAuth2 是一套規範,定義了多種處理身分驗證與授權的方法。 它相當龐大,涵蓋許多複雜的使用情境。 它也包含使用「第三方」進行身分驗證的方式。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:15:26 GMT 2026 - 4.1K bytes - Click Count (0) -
src/main/java/jcifs/CIFSContext.java
* * @return the DFS instance for this context */ DfsResolver getDfs(); /** * Get the SID resolver for resolving security identifiers * * @return the SID resolver for this context */ SidResolver getSIDResolver(); /** * Get the credentials associated with this context *Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java
/** * Checks if a property value should be masked for security reasons. * * @param key the property key to check * @return true if the value should be masked, false otherwise */ protected static boolean isMaskedValue(final String key) { return "http.proxy.password".equals(key) // || "ldap.admin.security.credentials".equals(key) //Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 9.7K bytes - Click Count (0) -
docs/security/README.md
# MinIO Security Overview [](https://slack.min.io) ## Server-Side Encryption MinIO supports two different types of server-side encryption ([SSE](#sse)): - **SSE-C**: The MinIO server en/decrypts an object with a secret key provided by the S3 client as part of the HTTP request headers. Therefore, [SSE-C](#ssec) requires TLS/HTTPS.
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed Feb 26 09:25:50 GMT 2025 - 13.8K bytes - Click Count (0) -
src/main/java/jcifs/FileNotifyInformation.java
* Any change to the extended attributes (EA) of a file in the watched directory or subtree causes a change notification wait operation to return. */ int FILE_NOTIFY_CHANGE_EA = 0x00000080; /** * Any security-descriptor change in the watched directory or subtree causes a change notification wait operation to * return. */ int FILE_NOTIFY_CHANGE_SECURITY = 0x00000100; /**
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5.2K bytes - Click Count (0) -
README.md
jcifs.smb.client.domain=WORKGROUP jcifs.smb.client.username=guest jcifs.smb.client.password= # Protocol versions (SMB1 to SMB 3.1.1) jcifs.smb.client.minVersion=SMB1 jcifs.smb.client.maxVersion=SMB311 # Security jcifs.smb.client.signingPreferred=false jcifs.smb.client.signingEnforced=false jcifs.smb.client.encryptionEnforced=false jcifs.smb.client.disablePlainTextPasswords=true # Performance
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 09:24:52 GMT 2025 - 6.2K bytes - Click Count (0) -
src/main/java/jcifs/dcerpc/DcerpcHandle.java
buf.setIndex(0); this.securityProvider.wrap(buf); } return buf; } /** * Sets the DCERPC security provider for authentication and message protection * @param securityProvider the security provider to use for DCERPC authentication */ public void setDcerpcSecurityProvider(final DcerpcSecurityProvider securityProvider) {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 15.9K bytes - Click Count (0) -
CODE_OF_CONDUCT.md
reported to the community leaders responsible for enforcement at . All complaints will be reviewed and investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the reporter of any incident. ## Enforcement Guidelines Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Thu Oct 17 06:18:13 GMT 2024 - 5K bytes - Click Count (0) -
docs/zh/docs/features.md
* URL。 * Email。 * UUID。 * ...及其他。 所有的校验都由完善且强大的 **Pydantic** 处理。 ### 安全性及身份验证 { #security-and-authentication } 集成了安全性和身份认证。杜绝数据库或者数据模型的渗透风险。 OpenAPI 中定义的安全模式,包括: * HTTP 基本认证。 * **OAuth2**(也使用 **JWT tokens**)。在 [使用 JWT 的 OAuth2](tutorial/security/oauth2-jwt.md) 查看教程。 * API 密钥,在: * 请求头。 * 查询参数。 * Cookies,等等。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 8.7K bytes - Click Count (0)