- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 243 for encrypt (0.07 sec)
-
docs/pt/docs/tutorial/security/index.md
/// tip | "Dica" Na seção sobre **deployment** você irá ver como configurar HTTPS de modo gratuito, usando Traefik e Let’s Encrypt. /// ## OpenID Connect OpenID Connect é outra especificação, baseada em **OAuth2**.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DataConfigService.java
return OptionalEntity.empty(); } return OptionalEntity.of(list.get(0)); } public void store(final DataConfig dataConfig) { dataConfig.setHandlerParameter(ParameterUtil.encrypt(dataConfig.getHandlerParameter())); dataConfigBhv.insertOrUpdate(dataConfig, op -> { op.setRefreshPolicy(Constants.TRUE); }); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.2K bytes - Viewed (0) -
docs/ru/docs/tutorial/security/index.md
/// tip | "Подсказка" В разделе **Развертывание** вы увидите [как настроить протокол HTTPS бесплатно, используя Traefik и Let's Encrypt.](https://fastapi.tiangolo.com/ru/deployment/https/) /// ## OpenID Connect OpenID Connect - это еще один протокол, основанный на **OAuth2**.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 8.3K bytes - Viewed (0) -
cmd/encryption-v1.go
} // helper to decrypt Etag given object encryption key and encrypted ETag func tryDecryptETag(key []byte, encryptedETag string, sses3 bool) string { // ETag for SSE-C or SSE-KMS encrypted objects need not be content MD5Sum.While encrypted // md5sum is stored internally, return just the last 32 bytes of hex-encoded and // encrypted md5sum string for SSE-C if !sses3 {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Oct 13 13:06:08 UTC 2024 - 37.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebConfigService.java
return OptionalEntity.empty(); } return OptionalEntity.of(list.get(0)); } public void store(final WebConfig webConfig) { webConfig.setConfigParameter(ParameterUtil.encrypt(webConfig.getConfigParameter())); webConfigBhv.insertOrUpdate(webConfig, op -> { op.setRefreshPolicy(Constants.TRUE); }); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.7K bytes - Viewed (0) -
docs/tr/docs/project-generation.md
* **Flower** ile Celery job'larını monitörleme. * **Traefik** ile backend ve frontend arasında yük dengeleme, böylece her ikisini de aynı domain altında, path ile ayrılmış, ancak farklı kapsayıcılar tarafından sunulabilirsiniz. * Let's Encrypt **HTTPS** sertifikalarının otomatik oluşturulması dahil olmak üzere Traefik entegrasyonu. * GitLab **CI** (sürekli entegrasyon), backend ve frontend testi dahil. ## Full Stack FastAPI Couchbase
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Jul 29 23:35:07 UTC 2024 - 6K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
if ( log.isDebugEnabled() ) { log.debug("Encrypted " + Hexdump.toHexString(trunc)); } } catch ( GeneralSecurityException e ) { throw new CIFSException("Failed to encrypt MIC", e); } } byte[] sig = new byte[16]; SMBUtil.writeInt4(1, sig, 0); // version
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 15.7K bytes - Viewed (0) -
regression-test/src/androidTest/java/okhttp/regression/LetsEncryptTest.java
import org.junit.runner.RunWith; import javax.net.ssl.SSLHandshakeException; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; /** * Let's Encrypt expiring root test. * * Read https://community.letsencrypt.org/t/mobile-client-workarounds-for-isrg-issue/137807 * for background. */ @RunWith(AndroidJUnit4.class) public class LetsEncryptTest {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Nov 17 07:40:31 UTC 2020 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
protected String createUserCodeFromUserId(String userCode) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final PrimaryCipher cipher = ComponentUtil.getPrimaryCipher(); userCode = cipher.encrypt(userCode); if (fessConfig.isValidUserCode(userCode)) { return userCode; } return null; } public void deleteUserCodeFromCookie(final HttpServletRequest request) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 8.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java
protected void parseRoleSet(final String value, final boolean encrypted, final Set<String> roleSet) { String rolesStr = value; if (encrypted && cipher != null) { try { rolesStr = cipher.decryptoText(rolesStr); } catch (final Exception e) { if (logger.isDebugEnabled()) { logger.debug("Failed to decrypt {}", rolesStr, e); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jul 25 01:48:41 UTC 2024 - 11.5K bytes - Viewed (0)