lib-q-core 0.0.4

Core types and traits for lib-Q post-quantum cryptography library
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
//! Algorithm registry for lib-Q
//!
//! This module provides a centralized registry of all supported algorithms,
//! eliminating the need for manual enumeration and providing better maintainability.

#[cfg(all(not(feature = "std"), feature = "alloc"))]
use alloc::collections::BTreeMap as HashMap;
#[cfg(feature = "alloc")]
use alloc::string::ToString;
#[cfg(feature = "alloc")]
use alloc::vec::Vec;
#[cfg(feature = "std")]
#[allow(clippy::disallowed_types)]
use std::collections::HashMap;

#[cfg(any(feature = "std", feature = "alloc"))]
use crate::Result;
use crate::{
    Algorithm,
    AlgorithmCategory,
};

/// Algorithm metadata
#[derive(Debug, Clone)]
pub struct AlgorithmMetadata {
    pub algorithm: Algorithm,
    pub category: AlgorithmCategory,
    pub security_level: u32,
    pub name: &'static str,
    pub description: &'static str,
    pub enabled: bool,
}

/// Central registry of all algorithms
#[cfg(any(feature = "std", feature = "alloc"))]
pub struct AlgorithmRegistry {
    #[allow(clippy::disallowed_types)]
    algorithms: HashMap<Algorithm, AlgorithmMetadata>,
}

#[cfg(any(feature = "std", feature = "alloc"))]
impl AlgorithmRegistry {
    /// Create a new algorithm registry
    pub fn new() -> Self {
        let mut registry = Self {
            #[allow(clippy::disallowed_types)]
            algorithms: HashMap::new(),
        };
        registry.register_all();
        registry
    }

    /// Register all supported algorithms
    fn register_all(&mut self) {
        // KEM algorithms
        self.register(AlgorithmMetadata {
            algorithm: Algorithm::MlKem512,
            category: AlgorithmCategory::Kem,
            security_level: 1,
            name: "ML-KEM-512",
            description: "CRYSTALS-ML-KEM Level 1 (128-bit security)",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::MlKem768,
            category: AlgorithmCategory::Kem,
            security_level: 3,
            name: "ML-KEM-768",
            description: "CRYSTALS-ML-KEM Level 3 (192-bit security)",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::MlKem1024,
            category: AlgorithmCategory::Kem,
            security_level: 4,
            name: "ML-KEM-1024",
            description: "CRYSTALS-ML-KEM Level 4 (256-bit security)",
            enabled: true,
        });

        // CB-KEM algorithms
        self.register(AlgorithmMetadata {
            algorithm: Algorithm::CbKem348864,
            category: AlgorithmCategory::Kem,
            security_level: 1,
            name: "CB-KEM 348864",
            description: "CB-KEM Level 1 (128-bit security)",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::CbKem460896,
            category: AlgorithmCategory::Kem,
            security_level: 3,
            name: "CB-KEM 460896",
            description: "CB-KEM Level 3 (192-bit security)",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::CbKem6688128,
            category: AlgorithmCategory::Kem,
            security_level: 4,
            name: "CB-KEM 6688128",
            description: "CB-KEM Level 4 (256-bit security)",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::CbKem6960119,
            category: AlgorithmCategory::Kem,
            security_level: 4,
            name: "CB-KEM 6960119",
            description: "CB-KEM Level 4 (256-bit security)",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::CbKem8192128,
            category: AlgorithmCategory::Kem,
            security_level: 5,
            name: "CB-KEM 8192128",
            description: "CB-KEM Level 5 (256-bit security, higher performance)",
            enabled: true,
        });

        // HQC algorithms
        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Hqc128,
            category: AlgorithmCategory::Kem,
            security_level: 1,
            name: "HQC-128",
            description: "HQC Level 1 (128-bit security)",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Hqc192,
            category: AlgorithmCategory::Kem,
            security_level: 3,
            name: "HQC-192",
            description: "HQC Level 3 (192-bit security)",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Hqc256,
            category: AlgorithmCategory::Kem,
            security_level: 4,
            name: "HQC-256",
            description: "HQC Level 4 (256-bit security)",
            enabled: true,
        });

        // Signature algorithms
        self.register(AlgorithmMetadata {
            algorithm: Algorithm::MlDsa44,
            category: AlgorithmCategory::Signature,
            security_level: 1,
            name: "ML-DSA-44",
            description: "CRYSTALS-ML-DSA Level 1 (128-bit security)",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::MlDsa65,
            category: AlgorithmCategory::Signature,
            security_level: 3,
            name: "ML-DSA-65",
            description: "CRYSTALS-ML-DSA Level 3 (192-bit security)",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::MlDsa87,
            category: AlgorithmCategory::Signature,
            security_level: 4,
            name: "ML-DSA-87",
            description: "CRYSTALS-ML-DSA Level 4 (256-bit security)",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::FnDsa,
            category: AlgorithmCategory::Signature,
            security_level: 1,
            name: "FN-DSA",
            description: "FN-DSA (FIPS 206) - Fast Fourier Transform over NTRU-Lattice-Based Digital Signature Algorithm",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::FnDsa512,
            category: AlgorithmCategory::Signature,
            security_level: 1,
            name: "FN-DSA-512",
            description: "FN-DSA Level 1 (128-bit security) - n=512",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::FnDsa1024,
            category: AlgorithmCategory::Signature,
            security_level: 5,
            name: "FN-DSA-1024",
            description: "FN-DSA Level 5 (256-bit security) - n=1024",
            enabled: true,
        });

        // SLH-DSA algorithms
        self.register(AlgorithmMetadata {
            algorithm: Algorithm::SlhDsaSha256128fRobust,
            category: AlgorithmCategory::Signature,
            security_level: 1,
            name: "SLH-DSA-SHA256-128f-Robust",
            description: "SLH-DSA SHA256 Level 1 (128-bit security)",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::SlhDsaSha256192fRobust,
            category: AlgorithmCategory::Signature,
            security_level: 3,
            name: "SLH-DSA-SHA256-192f-Robust",
            description: "SLH-DSA SHA256 Level 3 (192-bit security)",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::SlhDsaSha256256fRobust,
            category: AlgorithmCategory::Signature,
            security_level: 4,
            name: "SLH-DSA-SHA256-256f-Robust",
            description: "SLH-DSA SHA256 Level 4 (256-bit security)",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::SlhDsaShake256128fRobust,
            category: AlgorithmCategory::Signature,
            security_level: 1,
            name: "SLH-DSA-SHAKE256-128f-Robust",
            description: "SLH-DSA SHAKE256 Level 1 (128-bit security)",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::SlhDsaShake256192fRobust,
            category: AlgorithmCategory::Signature,
            security_level: 3,
            name: "SLH-DSA-SHAKE256-192f-Robust",
            description: "SLH-DSA SHAKE256 Level 3 (192-bit security)",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::SlhDsaShake256256fRobust,
            category: AlgorithmCategory::Signature,
            security_level: 4,
            name: "SLH-DSA-SHAKE256-256f-Robust",
            description: "SLH-DSA SHAKE256 Level 4 (256-bit security)",
            enabled: true,
        });

        // Hash algorithms
        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Shake128,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "SHAKE128",
            description: "SHAKE128 hash function",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Shake256,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "SHAKE256",
            description: "SHAKE256 hash function",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::CShake128,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "cSHAKE128",
            description: "cSHAKE128 customizable hash function",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::CShake256,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "cSHAKE256",
            description: "cSHAKE256 customizable hash function",
            enabled: true,
        });

        // SHA-3 algorithms
        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Sha3_224,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "SHA3-224",
            description: "SHA3-224 hash function",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Sha3_256,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "SHA3-256",
            description: "SHA3-256 hash function",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Sha3_384,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "SHA3-384",
            description: "SHA3-384 hash function",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Sha3_512,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "SHA3-512",
            description: "SHA3-512 hash function",
            enabled: true,
        });

        // KMAC algorithms
        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Kmac128,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "KMAC128",
            description: "KMAC128 keyed hash function",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Kmac256,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "KMAC256",
            description: "KMAC256 keyed hash function",
            enabled: true,
        });

        // TupleHash algorithms
        self.register(AlgorithmMetadata {
            algorithm: Algorithm::TupleHash128,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "TupleHash128",
            description: "TupleHash128 tuple hashing",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::TupleHash256,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "TupleHash256",
            description: "TupleHash256 tuple hashing",
            enabled: true,
        });

        // ParallelHash algorithms
        self.register(AlgorithmMetadata {
            algorithm: Algorithm::ParallelHash128,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "ParallelHash128",
            description: "ParallelHash128 parallel hashing",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::ParallelHash256,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "ParallelHash256",
            description: "ParallelHash256 parallel hashing",
            enabled: true,
        });

        // Keccak algorithms
        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Keccak224,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "Keccak-224",
            description: "Keccak-224 hash function",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Keccak256,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "Keccak-256",
            description: "Keccak-256 hash function",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Keccak384,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "Keccak-384",
            description: "Keccak-384 hash function",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Keccak512,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "Keccak-512",
            description: "Keccak-512 hash function",
            enabled: true,
        });

        // RFC 9861 KangarooTwelve instances
        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Kt128,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "KT128",
            description: "KangarooTwelve with TurboSHAKE128 (RFC 9861)",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Kt256,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "KT256",
            description: "KangarooTwelve with TurboSHAKE256 (RFC 9861)",
            enabled: true,
        });

        // SHA-2 algorithms
        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Sha224,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "SHA-224",
            description: "SHA-224 hash function",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Sha256,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "SHA-256",
            description: "SHA-256 hash function",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Sha384,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "SHA-384",
            description: "SHA-384 hash function",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Sha512,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "SHA-512",
            description: "SHA-512 hash function",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Sha512_224,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "SHA-512/224",
            description: "SHA-512/224 hash function (truncated)",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Sha512_256,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "SHA-512/256",
            description: "SHA-512/256 hash function (truncated)",
            enabled: true,
        });

        // TurboSHAKE algorithms
        self.register(AlgorithmMetadata {
            algorithm: Algorithm::TurboShake128,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "TurboSHAKE128",
            description: "TurboSHAKE128 extendable-output function",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::TurboShake256,
            category: AlgorithmCategory::Hash,
            security_level: 0,
            name: "TurboSHAKE256",
            description: "TurboSHAKE256 extendable-output function",
            enabled: true,
        });

        // AEAD algorithms
        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Saturnin,
            category: AlgorithmCategory::Aead,
            security_level: 1,
            name: "Saturnin",
            description: "Saturnin - Lightweight post-quantum symmetric algorithm suite for IoT and constrained devices",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::Shake256Aead,
            category: AlgorithmCategory::Aead,
            security_level: 1,
            name: "SHAKE256-AEAD",
            description: "SHAKE256-based AEAD construction using post-quantum hash function",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::DuplexSpongeAead,
            category: AlgorithmCategory::Aead,
            security_level: 4,
            name: "Duplex-Sponge-AEAD",
            description: "Keccak-f[1600] duplex-sponge authenticated encryption (SHA-3 family permutation)",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::TweakAead,
            category: AlgorithmCategory::Aead,
            security_level: 4,
            name: "Tweak-AEAD",
            description: "Parallel tweakable-block CTR AEAD over Keccak-f[1600] with independent 32-byte blocks",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::RomulusN,
            category: AlgorithmCategory::Aead,
            security_level: 1,
            name: "Romulus-N",
            description: "Romulus-N nonce-based AEAD (SKINNY-128-384+), LWC v1.3",
            enabled: true,
        });

        self.register(AlgorithmMetadata {
            algorithm: Algorithm::RomulusM,
            category: AlgorithmCategory::Aead,
            security_level: 1,
            name: "Romulus-M",
            description: "Romulus-M misuse-resistant AEAD (SKINNY-128-384+), LWC v1.3",
            enabled: true,
        });

        // Privacy-oriented protocol identifiers (implementations: lib-q-lattice-zkp, lib-q-ring-sig)
        self.register(AlgorithmMetadata {
            algorithm: Algorithm::LatticeRingSignature,
            category: AlgorithmCategory::PrivacyProtocol,
            security_level: 3,
            name: "Lattice federation ring signature",
            description: "Federation ring-style opening proofs over Ajtai commitments (lib-q-ring-sig)",
            enabled: true,
        });
        self.register(AlgorithmMetadata {
            algorithm: Algorithm::LatticeBlindIssuance,
            category: AlgorithmCategory::PrivacyProtocol,
            security_level: 3,
            name: "Lattice blind issuance",
            description: "CRS blind issuance plumbing and issuer attestation (lib-q-lattice-zkp/blind)",
            enabled: true,
        });
        self.register(AlgorithmMetadata {
            algorithm: Algorithm::LatticeAnonymousToken,
            category: AlgorithmCategory::PrivacyProtocol,
            security_level: 3,
            name: "Lattice anonymous token",
            description: "Commitment-backed anonymous token and spending proof (lib-q-lattice-zkp/token)",
            enabled: true,
        });
        self.register(AlgorithmMetadata {
            algorithm: Algorithm::LatticeNullifierRegistry,
            category: AlgorithmCategory::PrivacyProtocol,
            security_level: 3,
            name: "Lattice nullifier registry",
            description: "SHAKE256 nullifier binding for Sybil-evidence style proofs (lib-q-lattice-zkp/sigma/uniqueness)",
            enabled: true,
        });
        self.register(AlgorithmMetadata {
            algorithm: Algorithm::LatticeWitnessNullifier,
            category: AlgorithmCategory::PrivacyProtocol,
            security_level: 3,
            name: "Lattice witness nullifier",
            description: "Witness-derived SHAKE256 nullifier and opening binding (lib-q-lattice-zkp/sigma/uniqueness)",
            enabled: true,
        });
        self.register(AlgorithmMetadata {
            algorithm: Algorithm::LatticeDualRingLb,
            category: AlgorithmCategory::PrivacyProtocol,
            security_level: 3,
            name: "Lattice DualRing-LB pilot",
            description: "DualRing-LB (CCS 2021 Alg. 3) aggregated opening verify over Ajtai ring (lib-q-ring-sig/dualring_lb)",
            enabled: true,
        });
        self.register(AlgorithmMetadata {
            algorithm: Algorithm::MixOnionRouting,
            category: AlgorithmCategory::PrivacyProtocol,
            security_level: 3,
            name: "Mix-layer onion routing",
            description: "ML-KEM-768 layered encapsulation with Saturnin AEAD per hop",
            enabled: true,
        });
        self.register(AlgorithmMetadata {
            algorithm: Algorithm::SessionResumptionBinding,
            category: AlgorithmCategory::PrivacyProtocol,
            security_level: 3,
            name: "Session resumption binding",
            description: "SHAKE256 session token and stateless retry-cookie derivation",
            enabled: true,
        });
    }

    /// Register an algorithm
    fn register(&mut self, metadata: AlgorithmMetadata) {
        self.algorithms.insert(metadata.algorithm, metadata);
    }

    /// Get all supported algorithms
    #[cfg(feature = "alloc")]
    pub fn supported_algorithms(&self) -> Vec<Algorithm> {
        self.algorithms
            .values()
            .filter(|meta| meta.enabled)
            .map(|meta| meta.algorithm)
            .collect()
    }

    #[cfg(not(feature = "alloc"))]
    pub fn supported_algorithms(&self) -> &'static [Algorithm] {
        // In no_std mode, return a static slice of enabled algorithms
        static ALGORITHMS: &[Algorithm] = &[
            Algorithm::MlKem512,
            Algorithm::MlKem768,
            Algorithm::MlKem1024,
            Algorithm::MlDsa44,
            Algorithm::MlDsa65,
            Algorithm::MlDsa87,
            Algorithm::FnDsa,
            Algorithm::FnDsa512,
            Algorithm::FnDsa1024,
        ];
        ALGORITHMS
    }

    /// Get algorithms by category
    #[cfg(feature = "alloc")]
    pub fn algorithms_by_category(&self, category: AlgorithmCategory) -> Vec<Algorithm> {
        self.algorithms
            .values()
            .filter(|meta| meta.enabled && meta.category == category)
            .map(|meta| meta.algorithm)
            .collect()
    }

    #[cfg(not(feature = "alloc"))]
    pub fn algorithms_by_category(&self, category: AlgorithmCategory) -> &'static [Algorithm] {
        // In no_std mode, return a static slice based on category
        match category {
            AlgorithmCategory::Kem => &[
                Algorithm::MlKem512,
                Algorithm::MlKem768,
                Algorithm::MlKem1024,
            ],
            AlgorithmCategory::Signature => &[
                Algorithm::MlDsa44,
                Algorithm::MlDsa65,
                Algorithm::MlDsa87,
                Algorithm::FnDsa,
                Algorithm::FnDsa512,
                Algorithm::FnDsa1024,
            ],
            AlgorithmCategory::Hash => &[
                Algorithm::Sha224,
                Algorithm::Sha256,
                Algorithm::Sha384,
                Algorithm::Sha512,
                Algorithm::Sha512_224,
                Algorithm::Sha512_256,
            ],
            AlgorithmCategory::Aead => &[
                Algorithm::Saturnin,
                Algorithm::Shake256Aead,
                Algorithm::DuplexSpongeAead,
                Algorithm::TweakAead,
                Algorithm::RomulusN,
                Algorithm::RomulusM,
            ],
            AlgorithmCategory::PrivacyProtocol => &[
                Algorithm::LatticeRingSignature,
                Algorithm::LatticeBlindIssuance,
                Algorithm::LatticeAnonymousToken,
                Algorithm::LatticeNullifierRegistry,
                Algorithm::LatticeWitnessNullifier,
                Algorithm::LatticeDualRingLb,
                Algorithm::MixOnionRouting,
                Algorithm::SessionResumptionBinding,
            ],
        }
    }

    /// Get algorithms by security level
    #[cfg(feature = "alloc")]
    pub fn algorithms_by_security_level(&self, level: u32) -> Vec<Algorithm> {
        self.algorithms
            .values()
            .filter(|meta| meta.enabled && meta.security_level == level)
            .map(|meta| meta.algorithm)
            .collect()
    }

    #[cfg(not(feature = "alloc"))]
    pub fn algorithms_by_security_level(&self, level: u32) -> &'static [Algorithm] {
        // In no_std mode, return a static slice based on security level
        match level {
            1 => &[
                Algorithm::MlKem512,
                Algorithm::MlDsa44,
                Algorithm::FnDsa,
                Algorithm::FnDsa512,
                Algorithm::Saturnin,
                Algorithm::Shake256Aead,
                Algorithm::RomulusN,
                Algorithm::RomulusM,
            ],
            3 => &[
                Algorithm::MlKem768,
                Algorithm::MlDsa65,
                Algorithm::LatticeRingSignature,
                Algorithm::LatticeBlindIssuance,
                Algorithm::LatticeAnonymousToken,
                Algorithm::LatticeNullifierRegistry,
                Algorithm::LatticeWitnessNullifier,
                Algorithm::LatticeDualRingLb,
                Algorithm::MixOnionRouting,
                Algorithm::SessionResumptionBinding,
            ],
            4 => &[
                Algorithm::MlKem1024,
                Algorithm::MlDsa87,
                Algorithm::DuplexSpongeAead,
                Algorithm::TweakAead,
            ],
            5 => &[Algorithm::FnDsa1024],
            _ => &[],
        }
    }

    /// Get algorithm metadata
    pub fn get_metadata(&self, algorithm: &Algorithm) -> Option<&AlgorithmMetadata> {
        self.algorithms.get(algorithm)
    }

    /// Check if algorithm is enabled
    pub fn is_enabled(&self, algorithm: &Algorithm) -> bool {
        self.algorithms
            .get(algorithm)
            .map(|meta| meta.enabled)
            .unwrap_or(false)
    }

    /// Enable/disable an algorithm
    pub fn set_enabled(&mut self, algorithm: Algorithm, enabled: bool) -> Result<()> {
        if let Some(metadata) = self.algorithms.get_mut(&algorithm) {
            metadata.enabled = enabled;
            Ok(())
        } else {
            #[cfg(feature = "alloc")]
            {
                Err(crate::Error::UnsupportedAlgorithm {
                    algorithm: "unsupported algorithm".to_string(),
                })
            }
            #[cfg(not(feature = "alloc"))]
            {
                Err(crate::Error::UnsupportedAlgorithm {
                    algorithm: "unsupported algorithm",
                })
            }
        }
    }
}

#[cfg(any(feature = "std", feature = "alloc"))]
impl Default for AlgorithmRegistry {
    fn default() -> Self {
        Self::new()
    }
}

// Global algorithm registry instance
// Note: AlgorithmRegistry requires alloc (uses HashMap/BTreeMap)
#[cfg(all(feature = "alloc", feature = "std"))]
static REGISTRY: once_cell::sync::Lazy<AlgorithmRegistry> =
    once_cell::sync::Lazy::new(AlgorithmRegistry::new);

#[cfg(all(feature = "alloc", not(feature = "std"), feature = "spin"))]
static REGISTRY: spin::Once<AlgorithmRegistry> = spin::Once::new();

/// Get the global algorithm registry
/// Requires alloc feature (registry uses HashMap/BTreeMap internally)
#[cfg(all(feature = "alloc", feature = "std"))]
pub fn registry() -> &'static AlgorithmRegistry {
    &REGISTRY
}

#[cfg(all(feature = "alloc", not(feature = "std"), feature = "spin"))]
pub fn registry() -> &'static AlgorithmRegistry {
    REGISTRY.call_once(AlgorithmRegistry::new)
}

// registry() is not available in no_alloc mode
// Use supported_algorithms() etc. which return static slices directly

/// Get all supported algorithms
#[cfg(all(feature = "alloc", any(feature = "std", feature = "spin")))]
pub fn supported_algorithms() -> Vec<Algorithm> {
    registry().supported_algorithms()
}

#[cfg(all(feature = "alloc", not(any(feature = "std", feature = "spin"))))]
pub fn supported_algorithms() -> Vec<Algorithm> {
    AlgorithmRegistry::new().supported_algorithms()
}

#[cfg(not(feature = "alloc"))]
pub fn supported_algorithms() -> &'static [Algorithm] {
    // In no_alloc mode, return static slice directly without using registry
    static ALGORITHMS: &[Algorithm] = &[
        Algorithm::MlKem512,
        Algorithm::MlKem768,
        Algorithm::MlKem1024,
        Algorithm::MlDsa44,
        Algorithm::MlDsa65,
        Algorithm::MlDsa87,
        Algorithm::FnDsa,
        Algorithm::FnDsa512,
        Algorithm::FnDsa1024,
    ];
    ALGORITHMS
}

/// Get algorithms by category
#[cfg(all(feature = "alloc", any(feature = "std", feature = "spin")))]
pub fn algorithms_by_category(category: AlgorithmCategory) -> Vec<Algorithm> {
    registry().algorithms_by_category(category)
}

#[cfg(all(feature = "alloc", not(any(feature = "std", feature = "spin"))))]
pub fn algorithms_by_category(category: AlgorithmCategory) -> Vec<Algorithm> {
    AlgorithmRegistry::new().algorithms_by_category(category)
}

#[cfg(not(feature = "alloc"))]
pub fn algorithms_by_category(category: AlgorithmCategory) -> &'static [Algorithm] {
    // In no_alloc mode, return static slice directly without using registry
    match category {
        AlgorithmCategory::Kem => &[
            Algorithm::MlKem512,
            Algorithm::MlKem768,
            Algorithm::MlKem1024,
        ],
        AlgorithmCategory::Signature => &[
            Algorithm::MlDsa44,
            Algorithm::MlDsa65,
            Algorithm::MlDsa87,
            Algorithm::FnDsa,
            Algorithm::FnDsa512,
            Algorithm::FnDsa1024,
        ],
        AlgorithmCategory::Hash => &[
            Algorithm::Sha224,
            Algorithm::Sha256,
            Algorithm::Sha384,
            Algorithm::Sha512,
        ],
        AlgorithmCategory::Aead => &[
            Algorithm::Saturnin,
            Algorithm::Shake256Aead,
            Algorithm::DuplexSpongeAead,
            Algorithm::TweakAead,
            Algorithm::RomulusN,
            Algorithm::RomulusM,
        ],
        AlgorithmCategory::PrivacyProtocol => &[
            Algorithm::LatticeRingSignature,
            Algorithm::LatticeBlindIssuance,
            Algorithm::LatticeAnonymousToken,
            Algorithm::LatticeNullifierRegistry,
            Algorithm::LatticeWitnessNullifier,
            Algorithm::LatticeDualRingLb,
            Algorithm::MixOnionRouting,
            Algorithm::SessionResumptionBinding,
        ],
    }
}

/// Get algorithms by security level
#[cfg(all(feature = "alloc", any(feature = "std", feature = "spin")))]
pub fn algorithms_by_security_level(level: u32) -> Vec<Algorithm> {
    registry().algorithms_by_security_level(level)
}

#[cfg(all(feature = "alloc", not(any(feature = "std", feature = "spin"))))]
pub fn algorithms_by_security_level(level: u32) -> Vec<Algorithm> {
    AlgorithmRegistry::new().algorithms_by_security_level(level)
}

#[cfg(not(feature = "alloc"))]
pub fn algorithms_by_security_level(level: u32) -> &'static [Algorithm] {
    // In no_alloc mode, return static slice directly without using registry
    match level {
        1 => &[
            Algorithm::MlKem512,
            Algorithm::MlDsa44,
            Algorithm::FnDsa,
            Algorithm::FnDsa512,
            Algorithm::Saturnin,
            Algorithm::Shake256Aead,
            Algorithm::RomulusN,
            Algorithm::RomulusM,
        ],
        3 => &[
            Algorithm::MlKem768,
            Algorithm::MlDsa65,
            Algorithm::LatticeRingSignature,
            Algorithm::LatticeBlindIssuance,
            Algorithm::LatticeAnonymousToken,
            Algorithm::LatticeNullifierRegistry,
            Algorithm::LatticeWitnessNullifier,
            Algorithm::LatticeDualRingLb,
            Algorithm::MixOnionRouting,
            Algorithm::SessionResumptionBinding,
        ],
        4 => &[
            Algorithm::MlKem1024,
            Algorithm::MlDsa87,
            Algorithm::DuplexSpongeAead,
            Algorithm::TweakAead,
        ],
        5 => &[Algorithm::FnDsa1024],
        _ => &[],
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_algorithm_registry() {
        let registry = AlgorithmRegistry::new();

        // Test that we have algorithms
        let algorithms = registry.supported_algorithms();
        assert!(!algorithms.is_empty());

        // Test category filtering
        let kem_algorithms = registry.algorithms_by_category(AlgorithmCategory::Kem);
        assert!(!kem_algorithms.is_empty());

        // Test security level filtering
        let level1_algorithms = registry.algorithms_by_security_level(1);
        assert!(!level1_algorithms.is_empty());

        // Test metadata retrieval
        let metadata = registry.get_metadata(&Algorithm::MlKem512);
        assert!(metadata.is_some());
        assert_eq!(metadata.unwrap().name, "ML-KEM-512");
    }

    #[test]
    fn test_global_registry() {
        let algorithms = supported_algorithms();
        assert!(!algorithms.is_empty());

        let kem_algorithms = algorithms_by_category(AlgorithmCategory::Kem);
        assert!(!kem_algorithms.is_empty());
    }
}