We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bc5e67 commit e7d418fCopy full SHA for e7d418f
post-compute/src/compute/encryption.rs
@@ -12,9 +12,9 @@ use sha3::{Digest, Sha3_256};
12
use std::{fs, path::Path};
13
14
/// 256-bit key (32 bytes)
15
-pub const AES_KEY_LENGTH: usize = 32;
+const AES_KEY_LENGTH: usize = 32;
16
/// 128-bit IV (16 bytes) same as the AES block size
17
-pub const AES_IV_LENGTH: usize = 16;
+const AES_IV_LENGTH: usize = 16;
18
19
/// Encrypts a data file using hybrid encryption (AES-256-CBC + RSA-2048).
20
///
0 commit comments