ironcrypt 0.1.1

Library-first crypto toolkit: Argon2 password hashing, AES-256-GCM / XChaCha20 streaming, RSA/ECC hybrid encryption, and optional CLI/daemon.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
use clap::{Parser, Subcommand, ValueEnum};
#[cfg(feature = "interactive")]
use indicatif::{ProgressBar, ProgressStyle};
use base64::Engine;
use flate2::read::GzDecoder;
use flate2::write::GzEncoder;
use flate2::Compression;
use ironcrypt::{
    algorithms::SymmetricAlgorithm,
    decrypt_stream, ecc_utils, encrypt_stream, generate_rsa_keys,
    keys::PublicKey,
    save_keys_to_files, Argon2Config, IronCrypt, IronCryptConfig,
};
use rand::rngs::OsRng;
use rand::RngCore;
use sha2::{Digest, Sha512};
use std::fs::File;
use std::process;
#[cfg(feature = "interactive")]
use std::time::Duration;
use tar::{Archive, Builder};
use tempfile::NamedTempFile;

mod metrics;

#[derive(Parser)]
#[command(
    name = "ironcrypt",
    about = "Generation and management of RSA keys for IronCrypt."
)]
struct Cli {
    #[command(subcommand)]
    command: Commands,

    /// Path to a TOML configuration file (RSA key size, symmetric algorithm,
    /// Argon2 cost, password criteria, ...). Falls back to secure defaults
    /// when omitted.
    #[arg(long, global = true, env = "IRONCRYPT_CONFIG_FILE")]
    config: Option<String>,
}

/// Loads the `IronCryptConfig` from `--config`/`IRONCRYPT_CONFIG_FILE` when
/// provided, otherwise falls back to `IronCryptConfig::default()`.
fn load_config(config_path: &Option<String>) -> Result<IronCryptConfig, String> {
    match config_path {
        Some(path) => IronCryptConfig::from_file(path)
            .map_err(|e| format!("could not load config file '{}': {}", path, e)),
        None => Ok(IronCryptConfig::default()),
    }
}

/// Builds an `Argon2Config` from an `IronCryptConfig`'s tunable cost parameters.
fn argon2_config_from(config: &IronCryptConfig) -> Argon2Config {
    Argon2Config {
        memory_cost: config.argon2_memory_cost,
        time_cost: config.argon2_time_cost,
        parallelism: config.argon2_parallelism,
    }
}

#[derive(ValueEnum, Clone, Debug)]
enum KeyType {
    Rsa,
    Ecc,
}

#[derive(ValueEnum, Clone, Debug, Copy)]
enum CliSymmetricAlgorithm {
    Aes,
    Chacha20,
}

#[derive(Subcommand)]
enum Commands {
    /// Generates an asymmetric key pair.
    Generate {
        #[arg(short = 'v', long)]
        version: String,

        #[arg(short = 'd', long, default_value = "keys")]
        directory: String,

        /// For RSA, the key size in bits. ECC uses a fixed curve (P-256).
        #[arg(short = 's', long, default_value_t = 2048)]
        key_size: u32,

        #[arg(long)]
        passphrase: Option<String>,

        /// The type of key to generate.
        #[arg(long, value_enum, default_value_t = KeyType::Rsa)]
        key_type: KeyType,
    },

    /// Hashes and encrypts a password (existing logic).
    Encrypt {
        #[arg(short = 'w', long)]
        password: String,
    },

    /// Decrypts an encrypted password (existing logic).
    Decrypt {
        #[arg(short = 'w', long)]
        password: String,

        #[arg(short = 'd', long, conflicts_with = "file")]
        data: Option<String>,

        #[arg(short = 'f', long, conflicts_with = "data")]
        file: Option<String>,

        /// Path to the private keys directory
        #[arg(short = 'k', long, default_value = "keys")]
        key_directory: String,

        /// Passphrase for the private key
        #[arg(long)]
        passphrase: Option<String>,
    },

    /// Encrypts a binary file (new command).
    #[command(
        about = "Encrypts a binary file (uses AES+RSA)",
        alias("encfile"),
        alias("efile"),
        alias("ef")
    )]
    EncryptFile {
        /// Path to the binary file to encrypt
        #[arg(short = 'i', long)]
        input_file: String,

        /// Path to the output file (encrypted JSON)
        #[arg(short = 'o', long)]
        output_file: String,

        /// Path to the public keys directory
        #[arg(short = 'd', long, default_value = "keys")]
        public_key_directory: String,

        /// Version of the public key to use (can be specified multiple times for multiple recipients)
        #[arg(short = 'v', long, required = true)]
        key_versions: Vec<String>,

        /// Optional password (leave empty otherwise)
        #[arg(short = 'w', long, default_value = "")]
        password: String,

        /// The symmetric algorithm to use for encryption.
        #[arg(long, value_enum, default_value_t = CliSymmetricAlgorithm::Aes)]
        sym_algo: CliSymmetricAlgorithm,

        /// Version of the private key to use for signing
        #[arg(long)]
        signing_key_version: Option<String>,

        /// Passphrase for the signing key
        #[arg(long)]
        signing_key_passphrase: Option<String>,
    },

    /// Encrypts a PII file.
    #[command(about = "Encrypts a PII file (uses AES+RSA with PII keys)")]
    EncryptPii {
        /// Path to the binary file to encrypt
        #[arg(short = 'i', long)]
        input_file: String,

        /// Path to the output file (encrypted JSON)
        #[arg(short = 'o', long)]
        output_file: String,

        /// Optional password (leave empty otherwise)
        #[arg(short = 'w', long, default_value = "")]
        password: String,
    },

    /// Encrypts a biometric file.
    #[command(about = "Encrypts a biometric file (uses AES+RSA with biometric keys)")]
    EncryptBio {
        /// Path to the binary file to encrypt
        #[arg(short = 'i', long)]
        input_file: String,

        /// Path to the output file (encrypted JSON)
        #[arg(short = 'o', long)]
        output_file: String,

        /// Optional password (leave empty otherwise)
        #[arg(short = 'w', long, default_value = "")]
        password: String,
    },

    /// Decrypts a binary file (new command).
    #[command(
        about = "Decrypts a binary file (returns a .tar, .zip, etc.)",
        alias("decfile"),
        alias("dfile"),
        alias("df")
    )]
    DecryptFile {
        /// Path to the encrypted JSON file
        #[arg(short = 'i', long)]
        input_file: String,

        /// Path to the decrypted binary file
        #[arg(short = 'o', long)]
        output_file: String,

        /// Path to the private keys directory
        #[arg(short = 'k', long, default_value = "keys")]
        private_key_directory: String,

        /// Version of the private key
        #[arg(short = 'v', long)]
        key_version: String,

        /// Optional password
        #[arg(short = 'w', long, default_value = "")]
        password: String,

        /// Passphrase for the private key
        #[arg(long)]
        passphrase: Option<String>,

        /// Version of the public key to use for signature verification
        #[arg(long)]
        verifying_key_version: Option<String>,
    },

    /// Encrypts an entire directory.
    #[command(alias("encdir"))]
    EncryptDir {
        /// Path of the directory to encrypt.
        #[arg(short = 'i', long)]
        input_dir: String,

        /// Path of the encrypted output file.
        #[arg(short = 'o', long)]
        output_file: String,

        /// Path to the public keys directory.
        #[arg(short = 'd', long, default_value = "keys")]
        public_key_directory: String,

        /// Version of the public key to use (can be specified multiple times for multiple recipients)
        #[arg(short = 'v', long, required = true)]
        key_versions: Vec<String>,

        /// Optional password (leave empty otherwise).
        #[arg(short = 'w', long, default_value = "")]
        password: String,

        /// The symmetric algorithm to use for encryption.
        #[arg(long, value_enum, default_value_t = CliSymmetricAlgorithm::Aes)]
        sym_algo: CliSymmetricAlgorithm,
    },

    /// Decrypts an entire directory.
    #[command(alias("decdir"))]
    DecryptDir {
        /// Path of the encrypted file.
        #[arg(short = 'i', long)]
        input_file: String,

        /// Path of the output directory.
        #[arg(short = 'o', long)]
        output_dir: String,

        /// Path to the private keys directory.
        #[arg(short = 'k', long, default_value = "keys")]
        private_key_directory: String,

        /// Version of the private key.
        #[arg(short = 'v', long)]
        key_version: String,

        /// Optional password.
        #[arg(short = 'w', long, default_value = "")]
        password: String,

        /// Passphrase for the private key
        #[arg(long)]
        passphrase: Option<String>,
    },

    /// Rotates an encryption key.
    #[command(alias("rk"))]
    RotateKey {
        /// The old key version.
        #[arg(long)]
        old_version: String,

        /// The new key version.
        #[arg(long)]
        new_version: String,

        /// The key directory.
        #[arg(short = 'k', long, default_value = "keys")]
        key_directory: String,

        /// The new key size (optional, default: 2048).
        #[arg(short = 's', long)]
        key_size: Option<u32>,

        /// A single file to re-encrypt.
        #[arg(short = 'f', long, conflicts_with = "directory")]
        file: Option<String>,

        /// A directory of files to re-encrypt.
        #[arg(short = 'd', long, conflicts_with = "file")]
        directory: Option<String>,

        /// Passphrase for the private keys
        #[arg(long)]
        passphrase: Option<String>,
    },

    /// Signs a file to create a detached signature.
    Sign {
        /// Path to the file to sign.
        #[arg(short = 'i', long)]
        input_file: String,

        /// Path to write the signature file to.
        #[arg(short = 'o', long)]
        output_file: String,

        /// Path to the private keys directory.
        #[arg(short = 'k', long, default_value = "keys")]
        key_directory: String,

        /// Version of the private key to use for signing.
        #[arg(short = 'v', long)]
        key_version: String,

        /// Passphrase for the private key.
        #[arg(long)]
        passphrase: Option<String>,
    },

    /// Verifies a detached signature for a file.
    Verify {
        /// Path to the file that was signed.
        #[arg(short = 'i', long)]
        input_file: String,

        /// Path to the signature file.
        #[arg(short = 's', long)]
        signature_file: String,

        /// Path to the public keys directory.
        #[arg(short = 'd', long, default_value = "keys")]
        public_key_directory: String,

        /// Version of the public key to use for verification.
        #[arg(short = 'v', long)]
        key_version: String,
    },

    /// Generates a new API key for the daemon.
    GenerateApiKey,

    /// Starts the transparent encryption daemon.
    #[cfg(feature = "daemon")]
    Daemon {
        /// Port to listen on
        #[arg(short, long, default_value_t = 3000)]
        port: u16,

        /// Directory where keys are stored
        #[arg(short = 'd', long, default_value = "keys")]
        key_directory: String,

        /// Key version to use (e.g., "v1")
        #[arg(short = 'v', long)]
        key_version: String,

        /// Path to the JSON file containing API key configurations.
        #[arg(long, env = "IRONCRYPT_API_KEYS_FILE")]
        api_keys_file: String,
    },
}

#[tokio::main]
async fn main() {
    metrics::init_metrics();
    let args = Cli::parse();
    let config_path = args.config.clone();

    // The main logic is wrapped in a closure to handle errors easily
    let result: Result<(), String> = async {
        match args.command {
            Commands::Generate {
                version,
                directory,
                key_size,
                passphrase,
                key_type,
            } => {
                let start = metrics::metrics_start();
                let result: Result<(), String> = (async {
                    if let Err(e) = std::fs::create_dir_all(&directory) {
                        return Err(format!(
                            "could not create key directory '{}': {}",
                            directory, e
                        ));
                    }
                    let private_key_path = format!("{}/private_key_{}.pem", directory, version);
                    let public_key_path = format!("{}/public_key_{}.pem", directory, version);

                    match key_type {
                        KeyType::Rsa => {
                            #[cfg(feature = "interactive")]
                            let spinner = {
                                let s = ProgressBar::new_spinner();
                                s.set_style(
                                    ProgressStyle::with_template("{spinner} {msg}")
                                        .unwrap()
                                        .tick_strings(&["", "", "", "", "", "", "", "", "", ""]),
                                );
                                s.set_message("Generating RSA keys...");
                                s.enable_steady_tick(Duration::from_millis(100));
                                s
                            };
                            #[cfg(not(feature = "interactive"))]
                            println!("Generating RSA keys...");

                            let (private_key, public_key) = generate_rsa_keys(key_size)
                                .map_err(|e| format!("could not generate RSA key pair: {}", e))?;

                            #[cfg(feature = "interactive")]
                            spinner.finish_with_message("RSA keys generated.");
                            #[cfg(not(feature = "interactive"))]
                            println!("RSA keys generated.");

                            save_keys_to_files(
                                &private_key,
                                &public_key,
                                &private_key_path,
                                &public_key_path,
                                passphrase.as_deref(),
                            )
                            .map_err(|e| format!("could not save keys to files: {}", e))?;
                        }
                        KeyType::Ecc => {
                            println!("Generating ECC keys (P-256)...");
                            let (secret_key, public_key) = ecc_utils::generate_ecc_keys()
                                .map_err(|e| format!("could not generate ECC key pair: {}", e))?;

                            ecc_utils::save_keys_to_files(
                                &secret_key,
                                &public_key,
                                &private_key_path,
                                &public_key_path,
                                passphrase.as_deref(),
                            )
                            .map_err(|e| format!("could not save ECC keys to files: {}", e))?;
                        }
                    }

                    println!("Keys saved successfully.");
                    println!("Private key: {}", private_key_path);
                    println!("Public key: {}", public_key_path);
                    Ok(())
                })
                .await;
                metrics::metrics_finish("generate", 0, start, result.is_ok());
                result?;
            }
            Commands::Encrypt { password } => {
                let start = metrics::metrics_start();
                let payload_size = password.len() as u64;
                let result: Result<(), String> = (async {
                    let config = load_config(&config_path)?;
                    let crypt = IronCrypt::new(config, ironcrypt::DataType::Generic)
                        .await
                        .map_err(|e| format!("could not initialize encryption module: {}", e))?;
                    let encrypted_hash = crypt
                        .encrypt_password(&password)
                        .map_err(|e| format!("could not encrypt password: {}", e))?;
                    println!("{}", encrypted_hash);
                    Ok(())
                })
                .await;
                metrics::metrics_finish("encrypt", payload_size, start, result.is_ok());
                result?;
            }
            Commands::Decrypt {
                password,
                data,
                file,
                key_directory,
                passphrase,
            } => {
                let start = metrics::metrics_start();
                let (payload_size, result) = match (async {
                    let encrypted_data = if let Some(s) = data {
                        s
                    } else if let Some(f) = file {
                        std::fs::read_to_string(&f).map_err(|e| {
                            format!("could not read file '{}': {}", f, e)
                        })?
                    } else {
                        return Err("please provide encrypted data with --data or --file.".to_string());
                    };
                    let payload_size = encrypted_data.len() as u64;

                    let ed: ironcrypt::EncryptedData = serde_json::from_str(&encrypted_data)
                        .map_err(|e| format!("Could not parse encrypted data: {}", e))?;

                    let key_version = match &ed.recipient_info {
                        ironcrypt::RecipientInfo::Rsa { key_version, .. } => key_version.clone(),
                        ironcrypt::RecipientInfo::Ecc { key_version, .. } => key_version.clone(),
                    };

                    let mut config = load_config(&config_path)?;
                    let mut data_type_config = ironcrypt::config::DataTypeConfig::new();
                    data_type_config.insert(
                        ironcrypt::DataType::Generic,
                        ironcrypt::config::KeyManagementConfig {
                            key_directory,
                            key_version, // Use key version from file
                            passphrase,
                        },
                    );
                    config.data_type_config = Some(data_type_config);

                    let crypt = IronCrypt::new(config, ironcrypt::DataType::Generic)
                        .await
                        .map_err(|e| format!("could not initialize encryption module: {}", e))?;

                    if crypt
                        .verify_password(&encrypted_data, &password)
                        .map_err(|e| e.to_string())?
                    {
                        println!("Password correct.");
                    } else {
                        return Err("incorrect password or hash not found.".into());
                    }
                    Ok((payload_size, ()))
                })
                .await
                {
                    Ok((size, _)) => (size, Ok(())),
                    Err(e) => (0, Err(e)),
                };
                metrics::metrics_finish("decrypt", payload_size, start, result.is_ok());
                result?;
            }
            Commands::EncryptFile {
                input_file,
                output_file,
                public_key_directory,
                key_versions,
                mut password,
                sym_algo,
                signing_key_version,
                signing_key_passphrase,
            } => {
                let start = metrics::metrics_start();
                let payload_size = std::fs::metadata(&input_file).map(|m| m.len()).unwrap_or(0);
                let result: Result<(), String> = (async {
                    let mut source = File::open(&input_file)
                        .map_err(|e| format!("could not open input file '{}': {}", input_file, e))?;
                    let mut dest = File::create(&output_file).map_err(|e| {
                        format!("could not create output file '{}': {}", output_file, e)
                    })?;

                    let mut public_keys = Vec::new();
                    for v in &key_versions {
                        let public_key_path =
                            format!("{}/public_key_{}.pem", public_key_directory, v);
                        let key = ironcrypt::load_any_public_key(&public_key_path).map_err(|e| {
                            format!("could not load public key '{}': {}", public_key_path, e)
                        })?;
                        public_keys.push(key);
                    }

                    let recipients: Vec<(&PublicKey, &str)> = public_keys
                        .iter()
                        .zip(key_versions.iter().map(|s| s.as_str()))
                        .collect();

                    let signing_key_data;
                    let signing_key_version_string = signing_key_version;
                    let signing_key = if let Some(ref version) = signing_key_version_string {
                        let private_key_path =
                            format!("{}/private_key_{}.pem", public_key_directory, version);
                        signing_key_data = ironcrypt::load_any_private_key(&private_key_path, signing_key_passphrase.as_deref())
                            .map_err(|e| {
                                format!("could not load signing private key '{}': {}", private_key_path, e)
                            })?;
                        Some((&signing_key_data, version.as_str()))
                    } else {
                        None
                    };

                    let config = load_config(&config_path)?;
                    let criteria = config.password_criteria.clone();
                    let argon_cfg = argon2_config_from(&config);

                    let hash_password = !password.is_empty();
                    let algo = match sym_algo {
                        CliSymmetricAlgorithm::Aes => SymmetricAlgorithm::Aes256Gcm,
                        CliSymmetricAlgorithm::Chacha20 => SymmetricAlgorithm::ChaCha20Poly1305,
                    };

                    encrypt_stream(
                        &mut source,
                        &mut dest,
                        &mut password,
                        recipients,
                        signing_key,
                        &criteria,
                        argon_cfg,
                        hash_password,
                        algo,
                    )
                    .map_err(|e| format!("could not encrypt file stream: {}", e))?;

                    println!("File encrypted successfully to '{}'.", output_file);
                    Ok(())
                })
                .await;
                metrics::metrics_finish("encrypt_file", payload_size, start, result.is_ok());
                result?;
            }
            Commands::EncryptPii {
                input_file,
                output_file,
                mut password,
            } => {
                let start = metrics::metrics_start();
                let payload_size = std::fs::metadata(&input_file).map(|m| m.len()).unwrap_or(0);
                let result: Result<(), String> = (async {
                    let config = load_config(&config_path)?;
                    let crypt = IronCrypt::new(config, ironcrypt::DataType::Pii)
                        .await
                        .map_err(|e| format!("could not initialize encryption module: {}", e))?;

                    let mut source = File::open(&input_file)
                        .map_err(|e| format!("could not open input file '{}': {}", input_file, e))?;
                    let mut dest = File::create(&output_file).map_err(|e| {
                        format!("could not create output file '{}': {}", output_file, e)
                    })?;

                    let criteria = crypt.config.password_criteria.clone();
                    let argon_cfg = argon2_config_from(&crypt.config);

                    let public_key = crypt.public_key();
                    let key_version = crypt.key_version();
                    let recipients = vec![(public_key, key_version)];

                    let hash_password = !password.is_empty();
                    encrypt_stream(
                        &mut source,
                        &mut dest,
                        &mut password,
                        recipients,
                        None,
                        &criteria,
                        argon_cfg,
                        hash_password,
                        SymmetricAlgorithm::Aes256Gcm,
                    )
                    .map_err(|e| format!("could not encrypt file stream: {}", e))?;

                    println!("File encrypted successfully to '{}'.", output_file);
                    Ok(())
                })
                .await;
                metrics::metrics_finish("encrypt_pii", payload_size, start, result.is_ok());
                result?;
            }
            Commands::EncryptBio {
                input_file,
                output_file,
                mut password,
            } => {
                let start = metrics::metrics_start();
                let payload_size = std::fs::metadata(&input_file).map(|m| m.len()).unwrap_or(0);
                let result: Result<(), String> = (async {
                    let config = load_config(&config_path)?;
                    let crypt = IronCrypt::new(config, ironcrypt::DataType::Biometric)
                        .await
                        .map_err(|e| format!("could not initialize encryption module: {}", e))?;

                    let mut source = File::open(&input_file)
                        .map_err(|e| format!("could not open input file '{}': {}", input_file, e))?;
                    let mut dest = File::create(&output_file).map_err(|e| {
                        format!("could not create output file '{}': {}", output_file, e)
                    })?;

                    let criteria = crypt.config.password_criteria.clone();
                    let argon_cfg = argon2_config_from(&crypt.config);

                    let public_key = crypt.public_key();
                    let key_version = crypt.key_version();
                    let recipients = vec![(public_key, key_version)];

                    let hash_password = !password.is_empty();
                    encrypt_stream(
                        &mut source,
                        &mut dest,
                        &mut password,
                        recipients,
                        None,
                        &criteria,
                        argon_cfg,
                        hash_password,
                        SymmetricAlgorithm::Aes256Gcm,
                    )
                    .map_err(|e| format!("could not encrypt file stream: {}", e))?;

                    println!("File encrypted successfully to '{}'.", output_file);
                    Ok(())
                })
                .await;
                metrics::metrics_finish("encrypt_bio", payload_size, start, result.is_ok());
                result?;
            }
            Commands::DecryptFile {
                input_file,
                output_file,
                private_key_directory,
                key_version,
                password,
                passphrase,
                verifying_key_version,
            } => {
                let start = metrics::metrics_start();
                let payload_size = std::fs::metadata(&input_file).map(|m| m.len()).unwrap_or(0);
                let result: Result<(), String> = (async {
                    let mut source = File::open(&input_file).map_err(|e| {
                        format!("could not open input file '{}': {}", input_file, e)
                    })?;
                    let mut dest = File::create(&output_file).map_err(|e| {
                        format!("could not create output file '{}': {}", output_file, e)
                    })?;

                    let private_key_path =
                        format!("{}/private_key_{}.pem", private_key_directory, key_version);
                    let private_key = ironcrypt::load_any_private_key(
                        &private_key_path,
                        passphrase.as_deref(),
                    )
                    .map_err(|e| {
                        format!("could not load private key '{}': {}", private_key_path, e)
                    })?;

                    let verifying_key_data;
                    let verifying_key = if let Some(version) = verifying_key_version {
                        let public_key_path =
                            format!("{}/public_key_{}.pem", private_key_directory, version);
                        verifying_key_data = ironcrypt::load_any_public_key(&public_key_path)
                            .map_err(|e| {
                                format!("could not load verifying public key '{}': {}", public_key_path, e)
                            })?;
                        Some(&verifying_key_data)
                    } else {
                        None
                    };

                    decrypt_stream(
                        &mut source,
                        &mut dest,
                        &private_key,
                        &key_version,
                        &password,
                        verifying_key,
                    )
                    .map_err(|e| format!("could not decrypt file stream: {}", e))?;

                    println!("File decrypted successfully to '{}'.", output_file);
                    Ok(())
                })
                .await;
                metrics::metrics_finish("decrypt_file", payload_size, start, result.is_ok());
                result?;
            }
            Commands::EncryptDir {
                input_dir,
                output_file,
                public_key_directory,
                key_versions,
                mut password,
                sym_algo,
            } => {
                let start = metrics::metrics_start();
                let closure_result: Result<(u64, ()), String> = (async {
                    let temp_tar_file = NamedTempFile::new()
                        .map_err(|e| format!("could not create temporary file: {}", e))?;
                    let tar_path = temp_tar_file.path().to_path_buf();

                    let file = File::create(&tar_path)
                        .map_err(|e| format!("could not create tar archive: {}", e))?;
                    let encoder = GzEncoder::new(file, Compression::default());
                    let mut builder = Builder::new(encoder);
                    builder.append_dir_all(".", &input_dir).map_err(|e| {
                        format!("could not archive directory '{}': {}", input_dir, e)
                    })?;
                    builder
                        .into_inner()
                        .map_err(|e| format!("could not finalize archive: {}", e))?
                        .finish()
                        .map_err(|e| format!("could not finish gzip encoding: {}", e))?;

                    let payload_size =
                        std::fs::metadata(&tar_path).map(|m| m.len()).unwrap_or(0);

                    let mut source = File::open(&tar_path)
                        .map_err(|e| format!("could not open temporary archive: {}", e))?;
                    let mut dest = File::create(&output_file).map_err(|e| {
                        format!("could not create output file '{}': {}", output_file, e)
                    })?;

                    let mut public_keys = Vec::new();
                    for v in &key_versions {
                        let public_key_path =
                            format!("{}/public_key_{}.pem", public_key_directory, v);
                        let key = ironcrypt::load_any_public_key(&public_key_path).map_err(|e| {
                            format!("could not load public key '{}': {}", public_key_path, e)
                        })?;
                        public_keys.push(key);
                    }

                    let recipients: Vec<(&PublicKey, &str)> = public_keys
                        .iter()
                        .zip(key_versions.iter().map(|s| s.as_str()))
                        .collect();

                    let config = load_config(&config_path)?;
                    let criteria = config.password_criteria.clone();
                    let argon_cfg = argon2_config_from(&config);

                    let hash_password = !password.is_empty();
                    let algo = match sym_algo {
                        CliSymmetricAlgorithm::Aes => SymmetricAlgorithm::Aes256Gcm,
                        CliSymmetricAlgorithm::Chacha20 => SymmetricAlgorithm::ChaCha20Poly1305,
                    };
                    encrypt_stream(
                        &mut source,
                        &mut dest,
                        &mut password,
                        recipients,
                        None,
                        &criteria,
                        argon_cfg,
                        hash_password,
                        algo,
                    )
                    .map_err(|e| format!("could not encrypt directory stream: {}", e))?;

                    println!("Directory encrypted successfully to '{}'.", output_file);
                    Ok((payload_size, ()))
                })
                .await;

                let (payload_size, op_result) = match closure_result {
                    Ok((size, ())) => (size, Ok(())),
                    Err(e) => (0, Err(e)),
                };

                metrics::metrics_finish("encrypt_dir", payload_size, start, op_result.is_ok());
                op_result?;
            }
            Commands::DecryptDir {
                input_file,
                output_dir,
                private_key_directory,
                key_version,
                password,
                passphrase,
            } => {
                let start = metrics::metrics_start();
                let payload_size = std::fs::metadata(&input_file).map(|m| m.len()).unwrap_or(0);
                let result: Result<(), String> = (async {
                    let temp_tar_file = NamedTempFile::new()
                        .map_err(|e| format!("could not create temporary file: {}", e))?;
                    let tar_path = temp_tar_file.path().to_path_buf();

                    let mut source = File::open(&input_file).map_err(|e| {
                        format!("could not open input file '{}': {}", input_file, e)
                    })?;
                    let mut dest = File::create(&tar_path)
                        .map_err(|e| format!("could not create temporary archive: {}", e))?;

                    let private_key_path =
                        format!("{}/private_key_{}.pem", private_key_directory, key_version);
                    let private_key = ironcrypt::load_any_private_key(
                        &private_key_path,
                        passphrase.as_deref(),
                    )
                    .map_err(|e| {
                        format!("could not load private key '{}': {}", private_key_path, e)
                    })?;

                    decrypt_stream(
                        &mut source,
                        &mut dest,
                        &private_key,
                        &key_version,
                        &password,
                        None,
                    )
                    .map_err(|e| format!("could not decrypt directory stream: {}", e))?;

                    let tar_gz = File::open(&tar_path)
                        .map_err(|e| format!("could not open decrypted archive: {}", e))?;
                    let gz_decoder = GzDecoder::new(tar_gz);
                    let mut archive = Archive::new(gz_decoder);
                    std::fs::create_dir_all(&output_dir).map_err(|e| {
                        format!("could not create output directory '{}': {}", output_dir, e)
                    })?;
                    archive.unpack(&output_dir).map_err(|e| {
                        format!("could not extract archive to '{}': {}", output_dir, e)
                    })?;

                    println!("Directory decrypted successfully to '{}'.", output_dir);
                    Ok(())
                })
                .await;
                metrics::metrics_finish("decrypt_dir", payload_size, start, result.is_ok());
                result?;
            }
            Commands::RotateKey {
                old_version,
                new_version,
                key_directory,
                key_size,
                file,
                directory,
                passphrase,
            } => {
                let start = metrics::metrics_start();
                let result: Result<(), String> = (async {
                    if directory.is_some() {
                        return Err("Key rotation for directories is not yet supported.".into());
                    }
                    let file_path = file.ok_or_else(|| {
                        "Please specify a file to rotate with --file".to_string()
                    })?;

                    // 1. Set up configs. We need an IronCrypt instance to call re_encrypt_data.
                    // The instance is configured for the *old* key, which is needed to decrypt the
                    // existing file's symmetric key.
                    let mut config = load_config(&config_path)?;
                    let mut data_type_config = ironcrypt::config::DataTypeConfig::new();
                    data_type_config.insert(
                        ironcrypt::DataType::Generic,
                        ironcrypt::config::KeyManagementConfig {
                            key_directory: key_directory.clone(),
                            key_version: old_version.clone(),
                            passphrase,
                        },
                    );
                    config.data_type_config = Some(data_type_config);

                    // 2. Generate new key if it doesn't exist.
                    let new_public_key_path =
                        format!("{}/public_key_{}.pem", key_directory, new_version);
                    if std::fs::metadata(&new_public_key_path).is_err() {
                        println!("Generating new key for version '{}'...", new_version);
                        let (private_key, public_key) =
                            generate_rsa_keys(key_size.unwrap_or(2048))
                                .map_err(|e| e.to_string())?;
                        let new_private_key_path =
                            format!("{}/private_key_{}.pem", key_directory, new_version);
                        save_keys_to_files(
                            &private_key,
                            &public_key,
                            &new_private_key_path,
                            &new_public_key_path,
                            None, // Passphrase for new key is not supported in this flow yet
                        )
                        .map_err(|e| e.to_string())?;
                    }

                    // 3. Create an IronCrypt instance configured for the old key.
                    // This instance will be used to call the re-encryption logic.
                    let crypt = IronCrypt::new(config, ironcrypt::DataType::Generic)
                        .await
                        .map_err(|e| e.to_string())?;

                    // 4. Load the new public key.
                    let new_public_key = ironcrypt::load_any_public_key(&new_public_key_path)
                        .map_err(|e| e.to_string())?;

                    // 5. Read the original encrypted file content.
                    // This is inefficient for large files but required because the current
                    // re_encrypt_data function works on in-memory data.
                    let encrypted_json =
                        std::fs::read_to_string(&file_path).map_err(|e| e.to_string())?;

                    // 6. Perform the key rotation.
                    let re_encrypted_json = crypt
                        .re_encrypt_data(&encrypted_json, &new_public_key, &new_version)
                        .map_err(|e| e.to_string())?;

                    // 7. Write the re-encrypted data back to the original file.
                    std::fs::write(&file_path, re_encrypted_json).map_err(|e| e.to_string())?;

                    println!(
                        "Key for file '{}' rotated successfully to version '{}'.",
                        file_path, new_version
                    );
                    Ok(())
                })
                .await;
                metrics::metrics_finish("rotate_key", 0, start, result.is_ok());
                result?;
            }
            Commands::Sign {
                input_file,
                output_file,
                key_directory,
                key_version,
                passphrase,
            } => {
                let start = metrics::metrics_start();
                let payload_size = std::fs::metadata(&input_file).map(|m| m.len()).unwrap_or(0);
                let result: Result<(), String> = (async {
                    // 1. Load private key
                    let private_key_path =
                        format!("{}/private_key_{}.pem", key_directory, key_version);
                    let private_key = ironcrypt::load_any_private_key(
                        &private_key_path,
                        passphrase.as_deref(),
                    )
                    .map_err(|e| {
                        format!("could not load private key '{}': {}", private_key_path, e)
                    })?;

                    // 2. Read file and hash it
                    let input_data = std::fs::read(&input_file)
                        .map_err(|e| format!("could not read input file '{}': {}", input_file, e))?;
                    let hash = ironcrypt::hashing::hash_bytes(&input_data)
                        .map_err(|e| format!("could not hash input file: {}", e))?;

                    // 3. Sign the hash
                    let signature = ironcrypt::signing::sign_hash_with_any_key(&private_key, &hash)
                        .map_err(|e| format!("could not sign file: {}", e))?;

                    // 4. Write signature to output file
                    std::fs::write(&output_file, &signature)
                        .map_err(|e| format!("could not write signature to file '{}': {}", output_file, e))?;

                    println!("File '{}' signed successfully. Signature saved to '{}'.", input_file, output_file);
                    Ok(())
                })
                .await;
                metrics::metrics_finish("sign", payload_size, start, result.is_ok());
                result?;
            }
            Commands::Verify {
                input_file,
                signature_file,
                public_key_directory,
                key_version,
            } => {
                let start = metrics::metrics_start();
                let payload_size = std::fs::metadata(&input_file).map(|m| m.len()).unwrap_or(0);
                let result: Result<(), String> = (async {
                    // 1. Load public key
                    let public_key_path =
                        format!("{}/public_key_{}.pem", public_key_directory, key_version);
                    let public_key = ironcrypt::load_any_public_key(&public_key_path)
                        .map_err(|e| {
                            format!("could not load public key '{}': {}", public_key_path, e)
                        })?;

                    // 2. Read file and hash it
                    let input_data = std::fs::read(&input_file)
                        .map_err(|e| format!("could not read input file '{}': {}", input_file, e))?;
                    let hash = ironcrypt::hashing::hash_bytes(&input_data)
                        .map_err(|e| format!("could not hash input file: {}", e))?;

                    // 3. Read signature file
                    let signature = std::fs::read(&signature_file)
                        .map_err(|e| format!("could not read signature file '{}': {}", signature_file, e))?;

                    // 4. Verify signature
                    ironcrypt::signing::verify_signature_with_any_key(&public_key, &hash, &signature)
                        .map_err(|e| format!("Verification failed: {}", e))?;

                    println!("OK: Signature for '{}' is valid.", input_file);
                    Ok(())
                })
                .await;
                metrics::metrics_finish("verify", payload_size, start, result.is_ok());
                result?;
            }
            Commands::GenerateApiKey => {
                let start = metrics::metrics_start();
                let result: Result<(), String> = (async {
                    // Generate a 32-byte random key
                    let mut key = [0u8; 32];
                    OsRng.fill_bytes(&mut key);

                    // Hash the key with SHA-512
                    let mut hasher = Sha512::new();
                    hasher.update(key);
                    let hash = hasher.finalize();

                    // Encode for display
                    let key_b64 = base64::engine::general_purpose::STANDARD.encode(key);
                    let hash_hex = hex::encode(hash);

                    println!("Clé API générée avec succès.");
                    println!("---------------------------------");
                    println!("Veuillez conserver ces valeurs en lieu sûr. La 'Clé API secrète' ne doit jamais être partagée publiquement.");
                    println!();
                    println!("Clé API secrète (pour les clients) :");
                    println!("   {}", key_b64);
                    println!();
                    println!("Hash de la clé API (à mettre dans votre fichier de configuration) :");
                    println!("   {}", hash_hex);
                    println!();
                    println!("Comment l'utiliser :");
                    println!(" 1. Copiez le 'Hash de la clé API' ci-dessus.");
                    println!(" 2. Créez ou ouvrez votre fichier de configuration des clés (ex: keys.json).");
                    println!(" 3. Ajoutez une nouvelle entrée avec le hash et les permissions souhaitées, comme ceci :");
                    println!();
                    println!("    {{");
                    println!("      \"description\": \"Nouvelle clé pour mon application\",");
                    println!("      \"keyHash\": \"{}\",", hash_hex);
                    println!("      \"permissions\": [\"write\", \"read\"]");
                    println!("    }}");
                    println!();
                    println!(" 4. Démarrez ironcryptd avec --api-keys-file pointant vers ce fichier.");
                    println!(" 5. Les clients envoient la clé secrète : Authorization: Bearer {}", key_b64);
                    println!(" 6. Endpoints : POST /write (chiffrer), POST /read (déchiffrer).");

                    Ok(())
                })
                .await;
                metrics::metrics_finish("generate_api_key", 0, start, result.is_ok());
                result?;
            }
            #[cfg(feature = "daemon")]
            Commands::Daemon {
                port,
                key_directory,
                key_version,
                api_keys_file,
            } => {
                let start = metrics::metrics_start();
                let result: Result<(), String> = (async {
                    let config_file = config_path.clone().ok_or_else(|| {
                        "the daemon requires --config <FILE> (or IRONCRYPT_CONFIG_FILE) pointing to an ironcrypt.toml".to_string()
                    })?;

                    println!("Starting daemon...");
                    let mut daemon_path = std::env::current_exe()
                        .map_err(|e| format!("Could not find current executable path: {}", e))?;
                    daemon_path.pop();
                    daemon_path.push("ironcryptd");

                    let mut child = std::process::Command::new(daemon_path)
                        .arg("--port")
                        .arg(port.to_string())
                        .arg("--key-directory")
                        .arg(key_directory)
                        .arg("--key-version")
                        .arg(key_version)
                        .arg("--api-keys-file")
                        .arg(api_keys_file)
                        .arg("--config")
                        .arg(config_file)
                        .spawn()
                        .map_err(|e| format!("Failed to start daemon: {}", e))?;

                    println!("Daemon started with PID: {}", child.id());
                    child
                        .wait()
                        .map_err(|e| format!("Daemon process failed: {}", e))?;
                    Ok(())
                })
                .await;
                metrics::metrics_finish("daemon_launch", 0, start, result.is_ok());
                result?;
            }
        }
        Ok(())
    }.await;

    if let Err(e) = result {
        eprintln!("error: {}", e);
        process::exit(1);
    }
}

#[cfg(test)]
mod tests {

    use ironcrypt::config::{DataType, IronCryptConfig, KeyManagementConfig};
    use ironcrypt::ironcrypt::IronCrypt;
    use std::fs;
    use std::path::Path;

    #[tokio::test]
    async fn test_encrypt_and_verify() {
        let key_directory = "test_keys";

        if !Path::new(key_directory).exists() {
            fs::create_dir_all(key_directory).unwrap();
        }

        // Configuration
        let mut config = IronCryptConfig {
            rsa_key_size: 2048,
            ..Default::default()
        };
        let mut data_type_config = ironcrypt::config::DataTypeConfig::new();
        data_type_config.insert(
            DataType::Generic,
            KeyManagementConfig {
                key_directory: key_directory.to_string(),
                key_version: "v1".to_string(),
                passphrase: None,
            },
        );
        config.data_type_config = Some(data_type_config);

        // Build IronCrypt
        // Here we use "v1" in the test, but it's just an example of usage
        let crypt = IronCrypt::new(config, ironcrypt::DataType::Generic)
            .await
            .expect("IronCrypt::new error");

        // Encrypt the password
        let password = "Str0ngP@ssw0rd!";
        let encrypted = crypt
            .encrypt_password(password)
            .expect("encrypt_password error");

        println!("Encrypted data JSON = {}", encrypted);

        // Verify
        let ok = crypt
            .verify_password(&encrypted, password)
            .expect("verify_password error");
        assert!(ok, "The password should be correct");

        // Verify a bad password
        let bad_ok = crypt
            .verify_password(&encrypted, "bad_password")
            .expect("verify_password should not fail on bad password, just return false");
        assert!(!bad_ok, "Should return false on a bad password");
    }
}