correct platform verification evidence
This commit is contained in:
@@ -8,6 +8,7 @@ package com.lab.labtimesheet.feature.integration.model.dto;
|
||||
* @param keyVersion key-rotation identifier
|
||||
*/
|
||||
public record EncryptedSecret(byte[] ciphertext, byte[] nonce, int keyVersion) {
|
||||
/** Defensively copies both byte arrays before this value can cross the encryption boundary. */
|
||||
public EncryptedSecret {
|
||||
ciphertext = ciphertext.clone();
|
||||
nonce = nonce.clone();
|
||||
|
||||
Reference in New Issue
Block a user