- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for EncryptedData (0.47 seconds)
-
cmd/admin-handlers-idp-ldap.go
if err != nil { writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL) return } encryptedData, err := madmin.EncryptData(password, data) if err != nil { writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL) return } writeSuccessResponseJSON(w, encryptedData) } // AddServiceAccountLDAP adds a new service account for provided LDAP username or DN //Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 08 02:46:04 GMT 2025 - 19.2K bytes - Click Count (0) -
src/test/java/jcifs/pac/kerberos/KerberosTicketTest.java
* @param encType Encryption type * @param encryptedData Encrypted data * @param unknownTag Optional unknown tag number to test error handling * @return A byte array representing the ticket * @throws IOException on encoding error */ private byte[] createTestTicketBytes(Number version, String realm, String principalName, int encType, byte[] encryptedData, Integer unknownTag) throws IOException {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.4K bytes - Click Count (0) -
src/main/java/jcifs/util/SecureCredentialStorage.java
// Extract IV and ciphertext byte[] iv = new byte[GCM_IV_SIZE]; System.arraycopy(ciphertext, 0, iv, 0, GCM_IV_SIZE); byte[] encryptedData = new byte[ciphertext.length - GCM_IV_SIZE]; System.arraycopy(ciphertext, GCM_IV_SIZE, encryptedData, 0, encryptedData.length); // Setup cipher Cipher cipher = Cipher.getInstance(ENCRYPTION_ALGORITHM);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 12.7K bytes - Click Count (0) -
cmd/admin-handlers-idp-openid.go
if err != nil { writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL) return } encryptedData, err := madmin.EncryptData(cred.SecretKey, data) if err != nil { writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL) return } writeSuccessResponseJSON(w, encryptedData)Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sat Sep 06 17:38:46 GMT 2025 - 7.6K bytes - Click Count (0) -
cmd/admin-handlers-users.go
if err != nil { writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL) return } encryptedData, err := madmin.EncryptData(cred.SecretKey, data) if err != nil { writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL) return } writeSuccessResponseJSON(w, encryptedData) } // AddServiceAccount - PUT /minio/admin/v3/add-service-accountCreated: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 90.6K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java
synchronized (encrypted) { byte[] encryptedData = context.encryptMessage(plaintext, sessionId); messages.add(message); encrypted.add(encryptedData); } successCount.incrementAndGet(); }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 44.1K bytes - Click Count (0)