libsodium-rs 0.2.4

A comprehensive, idiomatic Rust wrapper for libsodium, providing a safe and ergonomic API for cryptographic operations
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
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
//! # Public-Key Cryptography
//!
//! This module provides functions for authenticated encryption using public-key cryptography.
//! It implements the X25519-XSalsa20-Poly1305 construction, which combines the X25519
//! key exchange with the XSalsa20 stream cipher and the Poly1305 message authentication code.
//!
//! This construction is also known as NaCl's crypto_box.
//!
//! ## Features
//!
//! - Authenticated encryption with public-key cryptography
//! - Protection against tampering and forgery
//! - Secure key exchange using X25519 elliptic curve Diffie-Hellman
//! - Strong encryption using XSalsa20 stream cipher
//! - Message authentication using Poly1305 MAC
//! - Forward secrecy when using ephemeral keys
//!
//! ## Usage
//!
//! ```rust
//! use libsodium_rs as sodium;
//! use sodium::crypto_box;
//! use sodium::random;
//! use sodium::ensure_init;
//!
//! // Initialize libsodium
//! ensure_init().expect("Failed to initialize libsodium");
//!
//! // Generate key pairs for Alice and Bob
//! let alice_keypair = crypto_box::KeyPair::generate();
//! let alice_pk = alice_keypair.public_key;
//! let alice_sk = alice_keypair.secret_key;
//! let bob_keypair = crypto_box::KeyPair::generate();
//! let bob_pk = bob_keypair.public_key;
//! let bob_sk = bob_keypair.secret_key;
//!
//! // Generate a random nonce
//! let nonce = crypto_box::Nonce::generate();
//!
//! // Alice encrypts a message for Bob
//! let message = b"Hello, Bob! This is a secret message.";
//! let ciphertext = crypto_box::seal(message, &nonce, &bob_pk, &alice_sk).unwrap();
//!
//! // Bob decrypts the message from Alice
//! let decrypted = crypto_box::open(&ciphertext, &nonce, &alice_pk, &bob_sk).unwrap();
//! assert_eq!(message, &decrypted[..]);
//! ```
//!
//! ## Security Considerations
//!
//! - Always use a unique nonce for each encryption operation with the same key pair
//! - For maximum security, use ephemeral keys for each communication session
//! - The secret key should be kept confidential
//! - The public key can be shared freely
//! - This implementation uses constant-time operations to prevent timing attacks
//! - For long-term security, consider using the XChaCha20-Poly1305 variant in the
//!   `curve25519xchacha20poly1305` submodule
//! - Be aware that X25519 is based on Curve25519, which has a cofactor of 8
//! - The shared secret established through X25519 is automatically hashed before being used
//!   as an encryption key
//! - The encryption provides authenticated encryption with associated data (AEAD)
//!   which means it protects both confidentiality and integrity

use crate::{Result, SodiumError};
use ct_codecs;
use ct_codecs::Encoder;
use libsodium_sys;

/// Number of bytes in a public key (32)
///
/// The public key is used for encryption and can be shared publicly.
/// It is based on the X25519 elliptic curve cryptography.
pub const PUBLICKEYBYTES: usize = libsodium_sys::crypto_box_PUBLICKEYBYTES as usize;

/// Number of bytes in a secret key (32)
///
/// The secret key is used for decryption and should be kept private.
/// It is based on the X25519 elliptic curve cryptography.
pub const SECRETKEYBYTES: usize = libsodium_sys::crypto_box_SECRETKEYBYTES as usize;

/// Number of bytes in a nonce (24)
///
/// The nonce is a unique value used for each encryption operation.
/// It should never be reused with the same key pair.
pub const NONCEBYTES: usize = libsodium_sys::crypto_box_NONCEBYTES as usize;

/// A nonce for use with crypto_box functions
///
/// This struct represents a nonce of the appropriate size (NONCEBYTES)
/// for use with the encryption and decryption functions in this module.
///
/// A nonce must be unique for each encryption operation with the same key pair.
#[derive(Clone, Eq, PartialEq)]
pub struct Nonce([u8; NONCEBYTES]);

impl Nonce {
    /// Generate a new random nonce
    ///
    /// ## Returns
    ///
    /// * `Nonce` - A random nonce for use with crypto_box functions
    ///
    /// ## Example
    ///
    /// ```rust
    /// use libsodium_rs as sodium;
    /// use sodium::crypto_box;
    /// use sodium::ensure_init;
    ///
    /// // Initialize libsodium
    /// ensure_init().expect("Failed to initialize libsodium");
    ///
    /// // Generate a random nonce
    /// let nonce = crypto_box::Nonce::generate();
    /// ```
    pub fn generate() -> Self {
        let mut bytes = [0u8; NONCEBYTES];
        crate::random::fill_bytes(&mut bytes);
        Self(bytes)
    }

    /// Create a nonce from raw bytes
    ///
    /// ## Arguments
    ///
    /// * `bytes` - Byte array of exactly NONCEBYTES length
    ///
    /// ## Returns
    ///
    /// * `Nonce` - A nonce initialized with the provided bytes
    pub const fn from_bytes_exact(bytes: [u8; NONCEBYTES]) -> Self {
        Self(bytes)
    }

    /// Get a reference to the underlying bytes
    ///
    /// ## Returns
    ///
    /// * `&[u8; NONCEBYTES]` - Reference to the nonce bytes
    pub fn as_bytes(&self) -> &[u8; NONCEBYTES] {
        &self.0
    }

    /// Get a mutable reference to the underlying bytes
    ///
    /// ## Returns
    ///
    /// * `&mut [u8; NONCEBYTES]` - Mutable reference to the nonce bytes
    pub fn as_bytes_mut(&mut self) -> &mut [u8; NONCEBYTES] {
        &mut self.0
    }
}

impl AsRef<[u8]> for Nonce {
    fn as_ref(&self) -> &[u8] {
        &self.0
    }
}

impl TryFrom<&[u8]> for Nonce {
    type Error = crate::SodiumError;

    fn try_from(slice: &[u8]) -> std::result::Result<Self, Self::Error> {
        if slice.len() != NONCEBYTES {
            return Err(crate::SodiumError::InvalidNonce(format!(
                "nonce must be exactly {NONCEBYTES} bytes"
            )));
        }

        let mut bytes = [0u8; NONCEBYTES];
        bytes.copy_from_slice(slice);
        Ok(Self(bytes))
    }
}

impl std::fmt::Debug for Nonce {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let hex = ct_codecs::Hex::encode_to_string(&self.0[..4]).unwrap_or_default();
        write!(f, "Nonce({hex})...")
    }
}

/// Generate a random nonce for use with crypto_box functions (legacy function)
///
/// This function generates a random nonce of the appropriate size (NONCEBYTES)
/// for use with the encryption and decryption functions in this module.
///
/// ## Returns
///
/// * `Vec<u8>` - A random nonce of length NONCEBYTES
///
/// ## Example
///
/// ```rust
/// use libsodium_rs as sodium;
/// use sodium::crypto_box;
/// use sodium::ensure_init;
///
/// // Initialize libsodium
/// ensure_init().expect("Failed to initialize libsodium");
///
/// // Generate a random nonce
/// let nonce = crypto_box::Nonce::generate();
/// assert_eq!(nonce.as_ref().len(), crypto_box::NONCEBYTES);
/// ```
///
/// Number of bytes in a MAC (message authentication code) (16)
///
/// The MAC is used to verify the authenticity and integrity of the message.
/// It is added to the ciphertext during encryption.
pub const MACBYTES: usize = libsodium_sys::crypto_box_MACBYTES as usize;

/// Number of bytes in a precomputed key (32)
///
/// The precomputed key is the result of the Diffie-Hellman key exchange,
/// which can be reused for multiple encryption/decryption operations.
pub const BEFORENMBYTES: usize = libsodium_sys::crypto_box_BEFORENMBYTES as usize;

/// Number of zero bytes required for NaCl compatibility (32)
///
/// This is used only with the NaCl compatibility API.
pub const ZEROBYTES: usize = libsodium_sys::crypto_box_ZEROBYTES as usize;

/// Number of zero bytes required in ciphertext for NaCl compatibility (16)
///
/// This is used only with the NaCl compatibility API.
pub const BOXZEROBYTES: usize = libsodium_sys::crypto_box_BOXZEROBYTES as usize;

/// Number of bytes in a sealed box (48)
///
/// A sealed box is used for anonymous encryption, where the sender's identity is not revealed.
pub const SEALBYTES: usize = libsodium_sys::crypto_box_SEALBYTES as usize;

/// A public key for asymmetric encryption using X25519
///
/// This key is used for encrypting messages and can be shared publicly.
/// It is derived from the corresponding secret key using the X25519 elliptic curve.
///
/// ## Properties
///
/// - Size: 32 bytes (256 bits)
/// - Based on the X25519 elliptic curve
/// - Can be safely shared with anyone
/// - Used to encrypt messages that can only be decrypted with the corresponding secret key
#[derive(Clone, Eq, PartialEq)]
pub struct PublicKey([u8; PUBLICKEYBYTES]);

/// A secret key for asymmetric encryption using X25519
///
/// This key is used for decrypting messages and must be kept private.
/// It is randomly generated and used to derive the corresponding public key.
///
/// ## Properties
///
/// - Size: 32 bytes (256 bits)
/// - Based on the X25519 elliptic curve
/// - Must be kept confidential
/// - Used to decrypt messages that were encrypted with the corresponding public key
#[derive(Clone, Eq, PartialEq, zeroize::Zeroize, zeroize::ZeroizeOnDrop)]
pub struct SecretKey([u8; SECRETKEYBYTES]);

/// A key pair for public-key encryption
///
/// Contains both a public key and a secret key for use with crypto_box functions.
pub struct KeyPair {
    /// Public key
    pub public_key: PublicKey,
    /// Secret key
    pub secret_key: SecretKey,
}

impl PublicKey {
    /// Generate a new public key from bytes
    ///
    /// # Arguments
    /// * `bytes` - Byte slice of exactly PUBLICKEYBYTES length
    ///
    /// # Returns
    /// * `Result<Self>` - A new public key or an error if the input is invalid
    pub fn from_bytes(bytes: &[u8]) -> Result<Self> {
        if bytes.len() != libsodium_sys::crypto_box_PUBLICKEYBYTES as usize {
            return Err(SodiumError::InvalidKey(format!(
                "public key must be exactly {} bytes",
                libsodium_sys::crypto_box_PUBLICKEYBYTES
            )));
        }

        let mut key = [0u8; libsodium_sys::crypto_box_PUBLICKEYBYTES as usize];
        key.copy_from_slice(bytes);
        Ok(PublicKey(key))
    }

    /// Create a public key from a fixed-size bytes
    ///
    /// # Arguments
    /// * `bytes` - Byte array of exactly PUBLICKEYBYTES length
    ///
    /// # Returns
    /// * `Self` - A new public key
    pub const fn from_bytes_exact(
        bytes: [u8; libsodium_sys::crypto_box_PUBLICKEYBYTES as usize],
    ) -> Self {
        Self(bytes)
    }

    /// Get a reference to the underlying bytes
    ///
    /// # Returns
    /// * `&[u8; PUBLICKEYBYTES]` - Reference to the public key bytes
    pub fn as_bytes(&self) -> &[u8; libsodium_sys::crypto_box_PUBLICKEYBYTES as usize] {
        &self.0
    }
}

impl AsRef<[u8]> for PublicKey {
    fn as_ref(&self) -> &[u8] {
        &self.0
    }
}

impl TryFrom<&[u8]> for PublicKey {
    type Error = SodiumError;

    fn try_from(slice: &[u8]) -> std::result::Result<Self, Self::Error> {
        Self::from_bytes(slice)
    }
}

impl From<[u8; libsodium_sys::crypto_box_PUBLICKEYBYTES as usize]> for PublicKey {
    fn from(bytes: [u8; libsodium_sys::crypto_box_PUBLICKEYBYTES as usize]) -> Self {
        Self(bytes)
    }
}

impl From<PublicKey> for [u8; PUBLICKEYBYTES] {
    fn from(key: PublicKey) -> [u8; PUBLICKEYBYTES] {
        key.0
    }
}

impl std::fmt::Debug for PublicKey {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let hex = ct_codecs::Hex::encode_to_string(&self.0[..4]).unwrap_or_default();
        write!(f, "PublicKey({hex})...")
    }
}

impl std::fmt::Display for PublicKey {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let hex = ct_codecs::Hex::encode_to_string(&self.0[..4]).unwrap_or_default();
        write!(f, "PublicKey({hex})...")
    }
}

impl SecretKey {
    /// Generate a new secret key from bytes
    ///
    /// # Arguments
    /// * `bytes` - Byte slice of exactly SECRETKEYBYTES length
    ///
    /// # Returns
    /// * `Result<Self>` - A new secret key or an error if the input is invalid
    pub fn from_bytes(bytes: &[u8]) -> Result<Self> {
        if bytes.len() != libsodium_sys::crypto_box_SECRETKEYBYTES as usize {
            return Err(SodiumError::InvalidKey(format!(
                "secret key must be exactly {} bytes",
                libsodium_sys::crypto_box_SECRETKEYBYTES
            )));
        }

        let mut key = [0u8; libsodium_sys::crypto_box_SECRETKEYBYTES as usize];
        key.copy_from_slice(bytes);
        Ok(SecretKey(key))
    }

    /// Create a secret key from a fixed-size bytes
    ///
    /// # Arguments
    /// * `bytes` - Byte array of exactly SECRETKEYBYTES length
    ///
    /// # Returns
    /// * `Self` - A new secret key
    pub const fn from_bytes_exact(
        bytes: [u8; libsodium_sys::crypto_box_SECRETKEYBYTES as usize],
    ) -> Self {
        Self(bytes)
    }

    /// Get a reference to the underlying bytes
    ///
    /// # Returns
    /// * `&[u8; SECRETKEYBYTES]` - Reference to the secret key bytes
    pub fn as_bytes(&self) -> &[u8; libsodium_sys::crypto_box_SECRETKEYBYTES as usize] {
        &self.0
    }
}

impl AsRef<[u8]> for SecretKey {
    fn as_ref(&self) -> &[u8] {
        &self.0
    }
}

impl TryFrom<&[u8]> for SecretKey {
    type Error = SodiumError;

    fn try_from(slice: &[u8]) -> std::result::Result<Self, Self::Error> {
        Self::from_bytes(slice)
    }
}

impl From<[u8; libsodium_sys::crypto_box_SECRETKEYBYTES as usize]> for SecretKey {
    fn from(bytes: [u8; libsodium_sys::crypto_box_SECRETKEYBYTES as usize]) -> Self {
        Self(bytes)
    }
}

impl From<SecretKey> for [u8; SECRETKEYBYTES] {
    fn from(key: SecretKey) -> [u8; SECRETKEYBYTES] {
        key.0
    }
}

impl std::fmt::Debug for SecretKey {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.write_str("SecretKey(*****)")
    }
}

impl std::fmt::Display for SecretKey {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.write_str("SecretKey(*****)")
    }
}

/// A precomputed shared key for public-key cryptography
///
/// This key is the result of the Diffie-Hellman key exchange between a public key
/// and a secret key. It can be reused for multiple encryption/decryption operations
/// with the same pair of keys, improving performance.
///
/// ## Properties
///
/// - Size: 32 bytes (256 bits)
/// - Derived from a public key and a secret key
/// - Must be kept confidential
/// - Can be used for multiple encryption/decryption operations
#[derive(Debug, Clone, Eq, PartialEq, zeroize::Zeroize, zeroize::ZeroizeOnDrop)]
pub struct PrecomputedKey([u8; BEFORENMBYTES]);

impl PrecomputedKey {
    /// Generate a new precomputed key from bytes
    ///
    /// # Arguments
    /// * `bytes` - Byte slice of exactly BEFORENMBYTES length
    ///
    /// # Returns
    /// * `Result<Self>` - A new precomputed key or an error if the input is invalid
    pub fn from_bytes(bytes: &[u8]) -> Result<Self> {
        if bytes.len() != BEFORENMBYTES {
            return Err(SodiumError::InvalidInput(format!(
                "precomputed key must be exactly {BEFORENMBYTES} bytes"
            )));
        }

        let mut k = [0u8; BEFORENMBYTES];
        k.copy_from_slice(bytes);
        Ok(PrecomputedKey(k))
    }

    /// Get a reference to the underlying bytes
    ///
    /// # Returns
    /// * `&[u8; BEFORENMBYTES]` - Reference to the precomputed key bytes
    pub fn as_bytes(&self) -> &[u8; BEFORENMBYTES] {
        &self.0
    }

    /// Create a precomputed key from a fixed-size bytes
    ///
    /// # Arguments
    /// * `bytes` - Byte array of exactly BEFORENMBYTES length
    ///
    /// # Returns
    /// * `Self` - A new precomputed key
    pub const fn from_bytes_exact(bytes: [u8; BEFORENMBYTES]) -> Self {
        Self(bytes)
    }
}

impl AsRef<[u8]> for PrecomputedKey {
    fn as_ref(&self) -> &[u8] {
        &self.0
    }
}

impl TryFrom<&[u8]> for PrecomputedKey {
    type Error = SodiumError;

    fn try_from(slice: &[u8]) -> std::result::Result<Self, Self::Error> {
        Self::from_bytes(slice)
    }
}

impl From<[u8; BEFORENMBYTES]> for PrecomputedKey {
    fn from(bytes: [u8; BEFORENMBYTES]) -> Self {
        Self(bytes)
    }
}

impl From<PrecomputedKey> for [u8; BEFORENMBYTES] {
    fn from(key: PrecomputedKey) -> [u8; BEFORENMBYTES] {
        key.0
    }
}

impl KeyPair {
    /// Generate a new key pair for public-key encryption
    ///
    /// This function generates a new random X25519 key pair suitable for public-key encryption
    /// and decryption. The key generation process uses libsodium's secure random number generator.
    ///
    /// ## Algorithm Details
    ///
    /// The key pair generation works as follows:
    /// 1. Generate 32 random bytes for the secret key
    /// 2. Derive the public key from the secret key using the X25519 elliptic curve
    ///
    /// ## Example
    ///
    /// ```rust
    /// use libsodium_rs as sodium;
    /// use sodium::crypto_box;
    /// use sodium::ensure_init;
    ///
    /// // Initialize libsodium
    /// ensure_init().expect("Failed to initialize libsodium");
    ///
    /// // Generate a key pair
    /// let keypair = crypto_box::KeyPair::generate();
    ///
    /// // The keys can now be used for encryption and decryption
    /// assert_eq!(keypair.public_key.as_bytes().len(), crypto_box::PUBLICKEYBYTES);
    /// assert_eq!(keypair.secret_key.as_bytes().len(), crypto_box::SECRETKEYBYTES);
    /// ```
    ///
    /// # Returns
    /// * `KeyPair` - A new key pair
    ///
    /// # Note
    /// This function should not fail under normal circumstances. In the extremely unlikely event
    /// of a system-level failure, this function might panic.
    pub fn generate() -> Self {
        let mut pk = [0u8; PUBLICKEYBYTES];
        let mut sk = [0u8; SECRETKEYBYTES];

        let result = unsafe { libsodium_sys::crypto_box_keypair(pk.as_mut_ptr(), sk.as_mut_ptr()) };

        // This should never happen in practice, but we check anyway for safety
        assert_eq!(result, 0, "Failed to generate keypair");

        Self {
            public_key: PublicKey(pk),
            secret_key: SecretKey(sk),
        }
    }

    /// Generate a new key pair from a seed
    ///
    /// This function generates a deterministic X25519 key pair from a seed. Given the same seed,
    /// it will always produce the same key pair. This is useful for applications that need
    /// deterministic key generation, such as when deriving keys from a master key.
    ///
    /// ## Security Considerations
    ///
    /// - The seed must be kept as secret as the secret key itself
    /// - The seed should be high-entropy (ideally from a CSPRNG)
    /// - If you need non-deterministic key generation, use `generate()` instead
    ///
    /// ## Example
    ///
    /// ```rust
    /// use libsodium_rs as sodium;
    /// use sodium::crypto_box;
    /// use sodium::random;
    /// use sodium::ensure_init;
    ///
    /// // Initialize libsodium
    /// ensure_init().expect("Failed to initialize libsodium");
    ///
    /// // Generate a random seed
    /// let mut seed = [0u8; 32];
    /// random::fill_bytes(&mut seed);
    ///
    /// // Generate a keypair from the seed
    /// let keypair1 = crypto_box::KeyPair::from_seed(&seed).unwrap();
    ///
    /// // The same seed will always produce the same keypair
    /// let keypair2 = crypto_box::KeyPair::from_seed(&seed).unwrap();
    /// assert_eq!(keypair1.public_key, keypair2.public_key);
    /// assert_eq!(keypair1.secret_key, keypair2.secret_key);
    /// ```
    ///
    /// # Arguments
    /// * `seed` - The seed to generate the keypair from (must be exactly 32 bytes)
    ///
    /// # Returns
    /// * `Result<KeyPair>` - A deterministically generated key pair or an error
    ///
    /// # Errors
    /// Returns an error if:
    /// * The seed has an invalid length
    /// * Key generation fails (extremely rare, typically only due to system issues)
    pub fn from_seed(seed: &[u8]) -> Result<Self> {
        if seed.len() != SECRETKEYBYTES {
            return Err(SodiumError::InvalidInput(format!(
                "invalid seed length: expected {}, got {}",
                SECRETKEYBYTES,
                seed.len()
            )));
        }

        let mut pk = [0u8; PUBLICKEYBYTES];
        let mut sk = [0u8; SECRETKEYBYTES];

        let result = unsafe {
            libsodium_sys::crypto_box_seed_keypair(pk.as_mut_ptr(), sk.as_mut_ptr(), seed.as_ptr())
        };

        if result != 0 {
            return Err(SodiumError::OperationError(
                "failed to generate keypair from seed".into(),
            ));
        }

        Ok(Self {
            public_key: PublicKey(pk),
            secret_key: SecretKey(sk),
        })
    }

    /// Convert the KeyPair into a tuple of (PublicKey, SecretKey)
    ///
    /// This function consumes the KeyPair and returns its components as a tuple.
    ///
    /// ## Example
    ///
    /// ```rust
    /// use libsodium_rs as sodium;
    /// use sodium::crypto_box;
    /// use sodium::ensure_init;
    ///
    /// // Initialize libsodium
    /// ensure_init().expect("Failed to initialize libsodium");
    ///
    /// // Generate a key pair
    /// let keypair = crypto_box::KeyPair::generate();
    ///
    /// // Convert to tuple
    /// let (public_key, secret_key) = keypair.into_tuple();
    /// ```
    pub fn into_tuple(self) -> (PublicKey, SecretKey) {
        (self.public_key, self.secret_key)
    }
}

/// ## Algorithm Details
///
/// 1. A shared secret is computed using X25519 key exchange
/// 2. The shared secret is hashed using the HSalsa20 function
/// 3. The resulting key is used with XSalsa20 for encryption
/// 4. Poly1305 is used to authenticate the ciphertext, ensuring integrity
///
/// ## Security Considerations
///
/// - Always use a unique nonce for each encryption operation with the same key pair
/// - The nonce can be public, but must never be reused with the same key pair
/// - For maximum security, use `Nonce::generate()` to create random nonces
///
/// ## Example
///
/// ```rust
/// use libsodium_rs as sodium;
/// use sodium::crypto_box;
/// use sodium::ensure_init;
///
/// // Initialize libsodium
/// ensure_init().expect("Failed to initialize libsodium");
///
/// // Generate key pairs for Alice and Bob
/// let alice_keypair = crypto_box::KeyPair::generate();
/// let (alice_pk, alice_sk) = (alice_keypair.public_key, alice_keypair.secret_key);
/// let bob_keypair = crypto_box::KeyPair::generate();
/// let (bob_pk, bob_sk) = (bob_keypair.public_key, bob_keypair.secret_key);
///
/// // Generate a random nonce
/// let nonce = crypto_box::Nonce::generate();
///
/// // Alice encrypts a message for Bob
/// let message = b"Hello, Bob! This is a secret message.";
/// let ciphertext = crypto_box::seal(message, &nonce, &bob_pk, &alice_sk).unwrap();
///
/// // The ciphertext is longer than the message due to the added MAC
/// assert_eq!(ciphertext.len(), message.len() + crypto_box::MACBYTES);
/// ```
///
/// # Arguments
/// * `message` - Message to encrypt
/// * `nonce` - Nonce for encryption
/// * `recipient_pk` - Recipient's public key
/// * `sender_sk` - Sender's secret key
///
/// # Returns
/// * `Result<Vec<u8>>` - Encrypted message (ciphertext) or an error
///
/// # Errors
/// Returns an error if the encryption operation fails (extremely rare)
pub fn seal(
    message: &[u8],
    nonce: &Nonce,
    recipient_pk: &PublicKey,
    sender_sk: &SecretKey,
) -> Result<Vec<u8>> {
    let mut ciphertext = vec![0u8; message.len() + MACBYTES];

    let result = unsafe {
        libsodium_sys::crypto_box_easy(
            ciphertext.as_mut_ptr(),
            message.as_ptr(),
            message.len() as u64,
            nonce.as_ref().as_ptr(),
            recipient_pk.as_bytes().as_ptr(),
            sender_sk.as_bytes().as_ptr(),
        )
    };

    if result != 0 {
        return Err(SodiumError::EncryptionError(
            "crypto_box encryption failed".into(),
        ));
    }

    Ok(ciphertext)
}

/// Encrypts a message using public-key cryptography with a precomputed shared key
///
/// This function is similar to `seal`, but it uses a precomputed shared key
/// instead of computing it from the public and secret keys. This can improve
/// performance when encrypting multiple messages with the same key pair.
///
/// ## Algorithm Details
///
/// 1. The precomputed shared key (already derived from X25519 and hashed with HSalsa20)
///    is used directly for XSalsa20 encryption
/// 2. Poly1305 is used to authenticate the ciphertext, ensuring integrity
///
/// ## Security Considerations
///
/// - Always use a unique nonce for each encryption operation with the same key pair
/// - The nonce can be public, but must never be reused with the same key pair
/// - For maximum security, use `Nonce::generate()` to create random nonces
///
/// ## Example
///
/// ```rust
/// use libsodium_rs as sodium;
/// use sodium::crypto_box;
/// use sodium::random;
/// use sodium::ensure_init;
///
/// // Initialize libsodium
/// ensure_init().expect("Failed to initialize libsodium");
///
/// // Generate key pairs for Alice and Bob
/// let alice_keypair = crypto_box::KeyPair::generate();
/// let (alice_pk, alice_sk) = (alice_keypair.public_key, alice_keypair.secret_key);
/// let bob_keypair = crypto_box::KeyPair::generate();
/// let (bob_pk, bob_sk) = (bob_keypair.public_key, bob_keypair.secret_key);
///
/// // Alice precomputes a shared key with Bob
/// let alice_precomputed = crypto_box::beforenm(&bob_pk, &alice_sk).unwrap();
///
/// // Generate a random nonce
/// let nonce = crypto_box::Nonce::generate();
///
/// // Alice encrypts a message for Bob using the precomputed key
/// let message = b"Hello, Bob! This is a secret message.";
/// let ciphertext = crypto_box::seal_afternm(message, &nonce, &alice_precomputed).unwrap();
/// ```
///
/// # Arguments
/// * `message` - Message to encrypt
/// * `nonce` - Nonce for encryption
/// * `precomputed_key` - Precomputed shared key from beforenm()
///
/// # Returns
/// * `Result<Vec<u8>>` - Encrypted message or an error
///
/// # Errors
/// Returns an error if the encryption operation fails (extremely rare)
pub fn seal_afternm(
    message: &[u8],
    nonce: &Nonce,
    precomputed_key: &PrecomputedKey,
) -> Result<Vec<u8>> {
    let ciphertext_len = message.len() + MACBYTES;
    let mut ciphertext = vec![0u8; ciphertext_len];

    let result = unsafe {
        libsodium_sys::crypto_box_easy_afternm(
            ciphertext.as_mut_ptr(),
            message.as_ptr(),
            message.len() as u64,
            nonce.as_ref().as_ptr(),
            precomputed_key.as_bytes().as_ptr(),
        )
    };

    if result != 0 {
        return Err(SodiumError::OperationError("encryption failed".into()));
    }

    Ok(ciphertext)
}

/// Decrypts a message using public-key cryptography
///
/// This function decrypts a message using the X25519-XSalsa20-Poly1305 construction.
/// The recipient uses their secret key and the sender's public key to decrypt
/// the message.
///
/// ## Algorithm Details
///
/// 1. A shared secret is computed using X25519 key exchange
/// 2. The shared secret is hashed using the HSalsa20 function
/// 3. The resulting key is used with XSalsa20 for decryption
/// 4. Poly1305 is used to authenticate the ciphertext, ensuring integrity
///
/// ## Security Considerations
///
/// - If decryption fails, it could be due to tampering, using the wrong keys, or using the wrong nonce
/// - The decryption operation is performed in constant time to prevent timing attacks
/// - If verification fails, no part of the message is considered authentic
///
/// ## Example
///
/// ```rust
/// use libsodium_rs as sodium;
/// use sodium::crypto_box;
/// use sodium::ensure_init;
///
/// // Initialize libsodium
/// ensure_init().expect("Failed to initialize libsodium");
///
/// // Generate key pairs for Alice and Bob
/// let alice_keypair = crypto_box::KeyPair::generate();
/// let (alice_pk, alice_sk) = (alice_keypair.public_key, alice_keypair.secret_key);
/// let bob_keypair = crypto_box::KeyPair::generate();
/// let (bob_pk, bob_sk) = (bob_keypair.public_key, bob_keypair.secret_key);
///
/// // Generate a random nonce
/// let nonce = crypto_box::Nonce::generate();
///
/// // Alice encrypts a message for Bob
/// let message = b"Hello, Bob! This is a secret message.";
/// let ciphertext = crypto_box::seal(message, &nonce, &bob_pk, &alice_sk).unwrap();
///
/// // Bob decrypts the message from Alice
/// let decrypted = crypto_box::open(&ciphertext, &nonce, &alice_pk, &bob_sk).unwrap();
/// assert_eq!(message, &decrypted[..]);
///
/// // Tamper with the ciphertext - decryption should fail
/// let mut tampered = ciphertext.clone();
/// tampered[0] ^= 1; // Flip a bit in the ciphertext
/// assert!(crypto_box::open(&tampered, &nonce, &alice_pk, &bob_sk).is_err());
/// ```
///
/// # Arguments
/// * `ciphertext` - Ciphertext to decrypt
/// * `nonce` - Nonce used for encryption
/// * `sender_pk` - Sender's public key
/// * `recipient_sk` - Recipient's secret key
///
/// # Returns
/// * `Result<Vec<u8>>` - Decrypted message or an error
///
/// # Errors
/// Returns an error if:
/// - The ciphertext is too short (less than MACBYTES)
/// - The MAC verification fails (indicating tampering or incorrect keys/nonce)
/// - The decryption operation fails
pub fn open(ciphertext: &[u8], nonce: &Nonce, pk: &PublicKey, sk: &SecretKey) -> Result<Vec<u8>> {
    if ciphertext.len() < MACBYTES {
        return Err(SodiumError::InvalidInput("ciphertext too short".into()));
    }

    let mut message = vec![0u8; ciphertext.len() - MACBYTES];

    let result = unsafe {
        libsodium_sys::crypto_box_open_easy(
            message.as_mut_ptr(),
            ciphertext.as_ptr(),
            ciphertext.len() as u64,
            nonce.as_ref().as_ptr(),
            pk.as_bytes().as_ptr(),
            sk.as_bytes().as_ptr(),
        )
    };

    if result != 0 {
        return Err(SodiumError::AuthenticationError);
    }

    Ok(message)
}

/// Decrypts a message using public-key cryptography with a precomputed shared key
///
/// This function is similar to `open`, but it uses a precomputed shared key
/// instead of computing it from the public and secret keys. This can improve
/// performance when decrypting multiple messages with the same key pair.
///
/// ## Algorithm Details
///
/// 1. The precomputed shared key (already derived from X25519 and hashed with HSalsa20)
///    is used directly for XSalsa20 decryption
/// 2. Poly1305 is used to authenticate the ciphertext, ensuring integrity
///
/// ## Security Considerations
///
/// - If decryption fails, it could be due to tampering, using the wrong keys, or using the wrong nonce
/// - The decryption operation is performed in constant time to prevent timing attacks
/// - If verification fails, no part of the message is considered authentic
///
/// ## Example
///
/// ```rust
/// use libsodium_rs as sodium;
/// use sodium::crypto_box;
/// use sodium::random;
/// use sodium::ensure_init;
///
/// // Initialize libsodium
/// ensure_init().expect("Failed to initialize libsodium");
///
/// // Generate key pairs for Alice and Bob
/// let alice_keypair = crypto_box::KeyPair::generate();
/// let (alice_pk, alice_sk) = (alice_keypair.public_key, alice_keypair.secret_key);
/// let bob_keypair = crypto_box::KeyPair::generate();
/// let (bob_pk, bob_sk) = (bob_keypair.public_key, bob_keypair.secret_key);
///
/// // Bob precomputes a shared key with Alice
/// let bob_precomputed = crypto_box::beforenm(&alice_pk, &bob_sk).unwrap();
///
/// // Generate a random nonce
/// let nonce = crypto_box::Nonce::generate();
///
/// // Alice encrypts a message for Bob using the precomputed key
/// let message = b"Hello, Bob! This is a secret message.";
/// let alice_precomputed = crypto_box::beforenm(&bob_pk, &alice_sk).unwrap();
/// let ciphertext = crypto_box::seal_afternm(message, &nonce, &alice_precomputed).unwrap();
///
/// // Bob decrypts the message from Alice using the precomputed key
/// let decrypted = crypto_box::open_afternm(&ciphertext, &nonce, &bob_precomputed).unwrap();
/// assert_eq!(message, &decrypted[..]);
/// ```
///
/// # Arguments
/// * `ciphertext` - Ciphertext to decrypt
/// * `nonce` - Nonce used for encryption
/// * `precomputed_key` - Precomputed shared key from beforenm()
///
/// # Returns
/// * `Result<Vec<u8>>` - Decrypted message or an error
///
/// # Errors
/// Returns an error if:
/// - The ciphertext is too short (less than MACBYTES)
/// - The MAC verification fails (indicating tampering or incorrect keys/nonce)
/// - The decryption operation fails
pub fn open_afternm(
    ciphertext: &[u8],
    nonce: &Nonce,
    precomputed_key: &PrecomputedKey,
) -> Result<Vec<u8>> {
    if ciphertext.len() < MACBYTES {
        return Err(SodiumError::InvalidInput("ciphertext too short".into()));
    }

    let mut message = vec![0u8; ciphertext.len() - MACBYTES];

    let result = unsafe {
        libsodium_sys::crypto_box_open_easy_afternm(
            message.as_mut_ptr(),
            ciphertext.as_ptr(),
            ciphertext.len() as u64,
            nonce.as_ref().as_ptr(),
            precomputed_key.as_bytes().as_ptr(),
        )
    };

    if result != 0 {
        return Err(SodiumError::OperationError("decryption failed".into()));
    }

    Ok(message)
}

/// Computes a shared secret key from a public key and a secret key
///
/// This function performs the X25519 key exchange to compute a shared secret
/// that can be used for symmetric encryption. It's useful when you need to
/// perform multiple encryption operations with the same key pair.
///
/// ## Algorithm Details
///
/// The shared secret is computed using the X25519 function, which is an
/// implementation of the elliptic curve Diffie-Hellman key exchange using
/// Curve25519. The raw output of X25519 is then hashed using the HSalsa20
/// function to derive the final symmetric key.
///
/// ## Security Considerations
///
/// - The shared secret should be kept confidential
/// - The shared secret should be used with a secure symmetric encryption algorithm
///
/// ## Example
///
/// ```rust
/// use libsodium_rs as sodium;
/// use sodium::crypto_box;
/// use sodium::random;
/// use sodium::ensure_init;
///
/// // Initialize libsodium
/// ensure_init().expect("Failed to initialize libsodium");
///
/// // Generate key pairs for Alice and Bob
/// let alice_keypair = crypto_box::KeyPair::generate();
/// let (alice_pk, alice_sk) = (alice_keypair.public_key, alice_keypair.secret_key);
/// let bob_keypair = crypto_box::KeyPair::generate();
/// let (bob_pk, bob_sk) = (bob_keypair.public_key, bob_keypair.secret_key);
///
/// // Alice precomputes a shared key with Bob
/// let alice_precomputed = crypto_box::beforenm(&bob_pk, &alice_sk).unwrap();
///
/// // Bob precomputes a shared key with Alice
/// let bob_precomputed = crypto_box::beforenm(&alice_pk, &bob_sk).unwrap();
///
/// // These precomputed keys can now be used for faster encryption/decryption
/// ```
///
/// # Arguments
/// * `public_key` - The public key of the other party
/// * `secret_key` - Your secret key
///
/// # Returns
/// * `Result<PrecomputedKey>` - The precomputed shared key or an error
///
/// # Example
/// ```rust
///   use libsodium_rs as sodium;
///   use sodium::crypto_box;
///   use sodium::random;
///   use sodium::ensure_init;
///
/// // Initialize libsodium
/// ensure_init().expect("Failed to initialize libsodium");
///
/// // Generate key pairs for Alice and Bob
/// let alice_keypair = crypto_box::KeyPair::generate();
/// let (alice_pk, alice_sk) = (alice_keypair.public_key, alice_keypair.secret_key);
/// let bob_keypair = crypto_box::KeyPair::generate();
/// let (bob_pk, bob_sk) = (bob_keypair.public_key, bob_keypair.secret_key);
///
/// // Alice precomputes a shared key with Bob
/// let alice_precomputed = crypto_box::beforenm(&bob_pk, &alice_sk).unwrap();
///
/// // Bob precomputes a shared key with Alice
/// let bob_precomputed = crypto_box::beforenm(&alice_pk, &bob_sk).unwrap();
///
/// // These precomputed keys can now be used for faster encryption/decryption
/// ```
pub fn beforenm(public_key: &PublicKey, secret_key: &SecretKey) -> Result<PrecomputedKey> {
    let mut k = [0u8; BEFORENMBYTES];

    let result = unsafe {
        libsodium_sys::crypto_box_beforenm(
            k.as_mut_ptr(),
            public_key.as_bytes().as_ptr(),
            secret_key.as_bytes().as_ptr(),
        )
    };

    if result != 0 {
        return Err(SodiumError::OperationError(
            "precomputed key generation failed".into(),
        ));
    }

    Ok(PrecomputedKey(k))
}

/// Encrypt a message using a precomputed key
///
/// This function is more efficient when encrypting multiple messages for the same recipient.
///
/// # Arguments
/// * `message` - Message to encrypt
/// * `nonce` - Nonce for encryption (must be NONCEBYTES bytes)
/// * `precomputed_key` - Precomputed shared key from beforenm()
///
/// # Returns
/// * `Result<Vec<u8>>` - Encrypted message or an error
///
/// # Example
///
/// ```rust
/// use libsodium_rs as sodium;
/// use sodium::crypto_box;
/// use sodium::random;
/// use sodium::ensure_init;
///
/// // Initialize libsodium
/// ensure_init().expect("Failed to initialize libsodium");
///
/// // Generate key pairs for Alice and Bob
/// let alice_keypair = crypto_box::KeyPair::generate();
/// let (alice_pk, alice_sk) = (alice_keypair.public_key, alice_keypair.secret_key);
/// let bob_keypair = crypto_box::KeyPair::generate();
/// let (bob_pk, bob_sk) = (bob_keypair.public_key, bob_keypair.secret_key);
///
/// // Alice precomputes a shared key with Bob
/// let alice_precomputed = crypto_box::beforenm(&bob_pk, &alice_sk).unwrap();
///
/// // Generate a random nonce
/// let nonce = crypto_box::Nonce::generate();
///
/// // Alice encrypts a message for Bob using the precomputed key
/// let message = b"Hello, Bob! This is a secret message.";
/// let ciphertext = crypto_box::seal_afternm(message, &nonce, &alice_precomputed).unwrap();
/// ```
/// Decrypt a message using a precomputed key
///
/// This function is more efficient when decrypting multiple messages from the same sender.
///
/// # Arguments
/// * `ciphertext` - Ciphertext to decrypt
/// * `nonce` - Nonce used for encryption (must be NONCEBYTES bytes)
/// * `precomputed_key` - Precomputed shared key from beforenm()
///
/// # Returns
/// * `Result<Vec<u8>>` - Decrypted message or an error
///
/// # Example
///
/// ```rust
/// use libsodium_rs as sodium;
/// use sodium::crypto_box;
/// use sodium::random;
/// use sodium::ensure_init;
///
/// // Initialize libsodium
/// ensure_init().expect("Failed to initialize libsodium");
///
/// // Generate key pairs for Alice and Bob
/// let alice_keypair = crypto_box::KeyPair::generate();
/// let (alice_pk, alice_sk) = (alice_keypair.public_key, alice_keypair.secret_key);
/// let bob_keypair = crypto_box::KeyPair::generate();
/// let (bob_pk, bob_sk) = (bob_keypair.public_key, bob_keypair.secret_key);
///
/// // Bob precomputes a shared key with Alice
/// let bob_precomputed = crypto_box::beforenm(&alice_pk, &bob_sk).unwrap();
///
/// // Generate a random nonce
/// let nonce = crypto_box::Nonce::generate();
///
/// // Alice encrypts a message for Bob using the precomputed key
/// let message = b"Hello, Bob! This is a secret message.";
/// let alice_precomputed = crypto_box::beforenm(&bob_pk, &alice_sk).unwrap();
/// let ciphertext = crypto_box::seal_afternm(message, &nonce, &alice_precomputed).unwrap();
///
/// // Bob decrypts the message from Alice using the precomputed key
/// let decrypted = crypto_box::open_afternm(&ciphertext, &nonce, &bob_precomputed).unwrap();
/// assert_eq!(message, &decrypted[..]);
/// ```
/// # Arguments
/// * `message` - Message to encrypt
/// * `nonce` - Nonce for encryption
/// * `recipient_pk` - Recipient's public key
/// * `sender_sk` - Sender's secret key
///
/// # Returns
/// * `Result<(Vec<u8>, [u8; MACBYTES])>` - Tuple of (ciphertext, authentication tag) or an error
pub fn seal_detached(
    message: &[u8],
    nonce: &Nonce,
    recipient_pk: &PublicKey,
    sender_sk: &SecretKey,
) -> Result<(Vec<u8>, [u8; MACBYTES])> {
    let mut ciphertext = vec![0u8; message.len()];
    let mut mac = [0u8; MACBYTES];

    let result = unsafe {
        libsodium_sys::crypto_box_detached(
            ciphertext.as_mut_ptr(),
            mac.as_mut_ptr(),
            message.as_ptr(),
            message.len() as u64,
            nonce.as_ref().as_ptr(),
            recipient_pk.as_bytes().as_ptr(),
            sender_sk.as_bytes().as_ptr(),
        )
    };

    if result != 0 {
        return Err(SodiumError::EncryptionError(
            "crypto_box detached encryption failed".into(),
        ));
    }

    Ok((ciphertext, mac))
}

/// Encrypt a message with detached authentication tag (legacy version)
///
/// This function is a legacy version that accepts a raw byte slice for the nonce.
/// It's recommended to use the version that accepts a `Nonce` type instead.
///
/// # Arguments
/// * `message` - Message to encrypt
/// * `nonce` - Nonce for encryption (must be NONCEBYTES bytes)
/// * `recipient_pk` - Recipient's public key
/// * `sender_sk` - Sender's secret key
///
/// # Returns
/// * `Result<(Vec<u8>, [u8; MACBYTES])>` - Tuple of (ciphertext, authentication tag) or an error
///
/// Decrypt a message with detached authentication tag
///
/// This function decrypts a message using a separately provided authentication tag.
///
/// # Arguments
/// * `ciphertext` - Ciphertext to decrypt
/// * `mac` - Authentication tag (must be MACBYTES bytes)
/// * `nonce` - Nonce used for encryption
/// * `sender_pk` - Sender's public key
/// * `recipient_sk` - Recipient's secret key
///
/// # Returns
/// * `Result<Vec<u8>>` - Decrypted message or an error
pub fn open_detached(
    ciphertext: &[u8],
    mac: &[u8],
    nonce: &Nonce,
    pk: &PublicKey,
    sk: &SecretKey,
) -> Result<Vec<u8>> {
    let mut message = vec![0u8; ciphertext.len()];

    let result = unsafe {
        libsodium_sys::crypto_box_open_detached(
            message.as_mut_ptr(),
            ciphertext.as_ptr(),
            mac.as_ptr(),
            ciphertext.len() as u64,
            nonce.as_ref().as_ptr(),
            pk.as_bytes().as_ptr(),
            sk.as_bytes().as_ptr(),
        )
    };

    if result != 0 {
        return Err(SodiumError::AuthenticationError);
    }

    Ok(message)
}

/// Decrypt a message with detached authentication tag (legacy version)
///
/// This function is a legacy version that accepts a raw byte slice for the nonce.
/// It's recommended to use the version that accepts a `Nonce` type instead.
///
/// # Arguments
/// * `ciphertext` - Ciphertext to decrypt
/// * `mac` - Authentication tag (must be MACBYTES bytes)
/// * `nonce` - Nonce used for encryption (must be NONCEBYTES bytes)
/// * `sender_pk` - Sender's public key
/// * `recipient_sk` - Recipient's secret key
///
/// # Returns
/// * `Result<Vec<u8>>` - Decrypted message or an error
///
/// Encrypt a message with detached authentication tag using a precomputed key
///
/// This function encrypts a message and returns the ciphertext and authentication tag separately.
///
/// # Arguments
/// * `message` - Message to encrypt
/// * `nonce` - Nonce for encryption (must be NONCEBYTES bytes)
/// * `precomputed_key` - Precomputed shared key from beforenm()
///
/// # Returns
/// * `Result<(Vec<u8>, Vec<u8>)>` - Tuple of (ciphertext, authentication tag) or an error
pub fn seal_detached_afternm(
    message: &[u8],
    nonce: &Nonce,
    precomputed_key: &PrecomputedKey,
) -> Result<(Vec<u8>, Vec<u8>)> {
    let mut ciphertext = vec![0u8; message.len()];
    let mut mac = vec![0u8; MACBYTES];

    let result = unsafe {
        libsodium_sys::crypto_box_detached_afternm(
            ciphertext.as_mut_ptr(),
            mac.as_mut_ptr(),
            message.as_ptr(),
            message.len() as u64,
            nonce.as_ref().as_ptr(),
            precomputed_key.as_bytes().as_ptr(),
        )
    };

    if result != 0 {
        return Err(SodiumError::OperationError("encryption failed".into()));
    }

    Ok((ciphertext, mac))
}

/// Decrypt a message with detached authentication tag using a precomputed key
///
/// This function decrypts a message using a separately provided authentication tag.
///
/// # Arguments
/// * `ciphertext` - Ciphertext to decrypt
/// * `mac` - Authentication tag
/// * `nonce` - Nonce used for encryption
/// * `precomputed_key` - Precomputed shared key from beforenm()
///
/// # Returns
/// * `Result<Vec<u8>>` - Decrypted message or an error
pub fn open_detached_afternm(
    ciphertext: &[u8],
    mac: &[u8],
    nonce: &Nonce,
    precomputed_key: &PrecomputedKey,
) -> Result<Vec<u8>> {
    let mut message = vec![0u8; ciphertext.len()];

    let result = unsafe {
        libsodium_sys::crypto_box_open_detached_afternm(
            message.as_mut_ptr(),
            ciphertext.as_ptr(),
            mac.as_ptr(),
            ciphertext.len() as u64,
            nonce.as_ref().as_ptr(),
            precomputed_key.as_bytes().as_ptr(),
        )
    };

    if result != 0 {
        return Err(SodiumError::OperationError("decryption failed".into()));
    }

    Ok(message)
}

/// Encrypt a message for a recipient without revealing the sender's identity
///
/// This function generates an ephemeral key pair, performs a key exchange with the recipient's
/// public key, and then encrypts the message. The ephemeral public key is included in the output.
///
/// ## Algorithm Details
///
/// The sealed box construction works as follows:
/// 1. Generate an ephemeral key pair
/// 2. Perform a key exchange with the recipient's public key to create a shared secret
/// 3. Use the shared secret to encrypt the message
/// 4. Combine the ephemeral public key with the ciphertext
///
/// This provides anonymity for the sender while ensuring only the intended recipient can decrypt
/// the message.
///
/// ## Security Considerations
///
/// - The recipient cannot authenticate the sender's identity
/// - Each message uses a unique ephemeral key pair, providing forward secrecy
/// - The output is deterministic for the same input message and recipient key
///
/// # Arguments
/// * `message` - Message to encrypt
/// * `recipient_pk` - Recipient's public key
///
/// # Returns
/// * `Result<Vec<u8>>` - Sealed box (ephemeral public key + ciphertext) or an error
pub fn seal_box(message: &[u8], recipient_pk: &PublicKey) -> Result<Vec<u8>> {
    let mut sealed_box = vec![0u8; message.len() + SEALBYTES];

    let result = unsafe {
        libsodium_sys::crypto_box_seal(
            sealed_box.as_mut_ptr(),
            message.as_ptr(),
            message.len() as u64,
            recipient_pk.as_bytes().as_ptr(),
        )
    };

    if result != 0 {
        return Err(SodiumError::EncryptionError(
            "sealed box encryption failed".into(),
        ));
    }

    Ok(sealed_box)
}

/// Decrypt a message from an anonymous sender
///
/// This function decrypts a message that was encrypted using seal_box().
/// It extracts the ephemeral public key from the sealed box and performs the key exchange.
///
/// # Arguments
/// * `sealed_box` - Sealed box (ephemeral public key + ciphertext)
/// * `recipient_pk` - Recipient's public key
/// * `recipient_sk` - Recipient's secret key
///
/// # Returns
/// * `Result<Vec<u8>>` - Decrypted message or an error
pub fn open_sealed_box(
    sealed_box: &[u8],
    recipient_pk: &PublicKey,
    recipient_sk: &SecretKey,
) -> Result<Vec<u8>> {
    if sealed_box.len() < SEALBYTES {
        return Err(SodiumError::InvalidInput("sealed box too short".into()));
    }

    let mut message = vec![0u8; sealed_box.len() - SEALBYTES];

    let result = unsafe {
        libsodium_sys::crypto_box_seal_open(
            message.as_mut_ptr(),
            sealed_box.as_ptr(),
            sealed_box.len() as u64,
            recipient_pk.as_bytes().as_ptr(),
            recipient_sk.as_bytes().as_ptr(),
        )
    };

    if result != 0 {
        return Err(SodiumError::OperationError(
            "sealed box decryption failed".into(),
        ));
    }

    Ok(message)
}

/// NaCl compatibility: Encrypt a message using XSalsa20-Poly1305 with zero padding
///
/// This function is provided for compatibility with the NaCl API.
/// It requires the message to be padded with ZEROBYTES zero bytes at the beginning.
///
/// # Arguments
/// * `padded_message` - Message to encrypt, with ZEROBYTES zero bytes at the beginning
/// * `nonce` - Nonce for encryption (must be NONCEBYTES bytes)
/// * `recipient_pk` - Recipient's public key
/// * `sender_sk` - Sender's secret key
///
/// # Returns
/// * `Result<Vec<u8>>` - Encrypted message (with BOXZEROBYTES zero bytes at the beginning) or an error
pub fn seal_nacl(
    padded_message: &[u8],
    nonce: &Nonce,
    pk: &PublicKey,
    sk: &SecretKey,
) -> Result<Vec<u8>> {
    if padded_message.len() < ZEROBYTES {
        return Err(SodiumError::InvalidInput(format!(
            "padded message must be at least {ZEROBYTES} bytes"
        )));
    }

    // Verify that the first ZEROBYTES bytes of the message are all 0
    if padded_message.iter().take(ZEROBYTES).any(|&byte| byte != 0) {
        return Err(SodiumError::InvalidInput(format!(
            "first {ZEROBYTES} bytes of padded message must be zero"
        )));
    }

    let mut ciphertext = vec![0u8; padded_message.len()];

    let result = unsafe {
        libsodium_sys::crypto_box(
            ciphertext.as_mut_ptr(),
            padded_message.as_ptr(),
            padded_message.len() as u64,
            nonce.as_ref().as_ptr(),
            pk.as_bytes().as_ptr(),
            sk.as_bytes().as_ptr(),
        )
    };

    if result != 0 {
        return Err(SodiumError::OperationError("encryption failed".into()));
    }

    Ok(ciphertext)
}

/// NaCl compatibility: Decrypt a message using XSalsa20-Poly1305 with zero padding
///
/// This function is provided for compatibility with the NaCl API.
/// The ciphertext must have BOXZEROBYTES zero bytes at the beginning.
///
/// # Arguments
/// * `padded_ciphertext` - Ciphertext to decrypt, with BOXZEROBYTES zero bytes at the beginning
/// * `nonce` - Nonce used for encryption
/// * `pk` - Sender's public key
/// * `sk` - Recipient's secret key
///
/// # Returns
/// * `Result<Vec<u8>>` - Decrypted message (with ZEROBYTES zero bytes at the beginning) or an error
pub fn open_nacl(
    padded_ciphertext: &[u8],
    nonce: &Nonce,
    pk: &PublicKey,
    sk: &SecretKey,
) -> Result<Vec<u8>> {
    if padded_ciphertext.len() < BOXZEROBYTES {
        return Err(SodiumError::InvalidInput(format!(
            "padded ciphertext must be at least {BOXZEROBYTES} bytes"
        )));
    }

    // Verify that the first BOXZEROBYTES bytes of the ciphertext are all 0
    if padded_ciphertext
        .iter()
        .take(BOXZEROBYTES)
        .any(|&byte| byte != 0)
    {
        return Err(SodiumError::InvalidInput(format!(
            "first {BOXZEROBYTES} bytes of padded ciphertext must be zero"
        )));
    }

    let mut message = vec![0u8; padded_ciphertext.len()];

    let result = unsafe {
        libsodium_sys::crypto_box_open(
            message.as_mut_ptr(),
            padded_ciphertext.as_ptr(),
            padded_ciphertext.len() as u64,
            nonce.as_ref().as_ptr(),
            pk.as_bytes().as_ptr(),
            sk.as_bytes().as_ptr(),
        )
    };

    if result != 0 {
        return Err(SodiumError::OperationError("decryption failed".into()));
    }

    Ok(message)
}

/// NaCl compatibility: Encrypt a message using XSalsa20-Poly1305 with zero padding and a precomputed key
///
/// This function is provided for compatibility with the NaCl API.
/// It requires the message to be padded with ZEROBYTES zero bytes at the beginning.
///
/// # Arguments
/// * `padded_message` - Message to encrypt, with ZEROBYTES zero bytes at the beginning
/// * `nonce` - Nonce for encryption (must be NONCEBYTES bytes)
/// * `precomputed_key` - Precomputed shared key from beforenm()
///
/// # Returns
/// * `Result<Vec<u8>>` - Encrypted message (with BOXZEROBYTES zero bytes at the beginning) or an error
pub fn seal_nacl_afternm(
    padded_message: &[u8],
    nonce: &Nonce,
    precomputed_key: &PrecomputedKey,
) -> Result<Vec<u8>> {
    if padded_message.len() < ZEROBYTES {
        return Err(SodiumError::InvalidInput(format!(
            "padded message must be at least {ZEROBYTES} bytes"
        )));
    }

    // Verify that the first ZEROBYTES bytes of the message are all 0
    if padded_message.iter().take(ZEROBYTES).any(|&byte| byte != 0) {
        return Err(SodiumError::InvalidInput(format!(
            "first {ZEROBYTES} bytes of padded message must be zero"
        )));
    }

    let mut ciphertext = vec![0u8; padded_message.len()];

    let result = unsafe {
        libsodium_sys::crypto_box_afternm(
            ciphertext.as_mut_ptr(),
            padded_message.as_ptr(),
            padded_message.len() as u64,
            nonce.as_ref().as_ptr(),
            precomputed_key.as_bytes().as_ptr(),
        )
    };

    if result != 0 {
        return Err(SodiumError::OperationError("encryption failed".into()));
    }

    Ok(ciphertext)
}

/// NaCl compatibility: Decrypt a message using XSalsa20-Poly1305 with zero padding and a precomputed key
///
/// This function is provided for compatibility with the NaCl API.
/// The ciphertext must have BOXZEROBYTES zero bytes at the beginning.
///
/// # Arguments
/// * `padded_ciphertext` - Ciphertext to decrypt, with BOXZEROBYTES zero bytes at the beginning
/// * `nonce` - Nonce used for encryption (must be NONCEBYTES bytes)
/// * `precomputed_key` - Precomputed shared key from beforenm()
///
/// # Returns
/// * `Result<Vec<u8>>` - Decrypted message (with ZEROBYTES zero bytes at the beginning) or an error
pub fn open_nacl_afternm(
    padded_ciphertext: &[u8],
    nonce: &Nonce,
    precomputed_key: &PrecomputedKey,
) -> Result<Vec<u8>> {
    if padded_ciphertext.len() < BOXZEROBYTES {
        return Err(SodiumError::InvalidInput(format!(
            "padded ciphertext must be at least {BOXZEROBYTES} bytes"
        )));
    }

    // Verify that the first BOXZEROBYTES bytes of the ciphertext are all 0
    if padded_ciphertext
        .iter()
        .take(BOXZEROBYTES)
        .any(|&byte| byte != 0)
    {
        return Err(SodiumError::InvalidInput(format!(
            "first {BOXZEROBYTES} bytes of padded ciphertext must be zero"
        )));
    }

    let mut message = vec![0u8; padded_ciphertext.len()];

    let result = unsafe {
        libsodium_sys::crypto_box_open_afternm(
            message.as_mut_ptr(),
            padded_ciphertext.as_ptr(),
            padded_ciphertext.len() as u64,
            nonce.as_ref().as_ptr(),
            precomputed_key.as_bytes().as_ptr(),
        )
    };

    if result != 0 {
        return Err(SodiumError::OperationError("decryption failed".into()));
    }

    Ok(message)
}

// Export submodules

/// Original variant of crypto_box using XSalsa20-Poly1305
///
/// This submodule provides the same functionality as the parent module, but with
/// explicit naming to indicate the use of XSalsa20-Poly1305.
pub mod curve25519xsalsa20poly1305;

/// Extended variant of crypto_box using XChaCha20-Poly1305
///
/// This submodule provides the same functionality as the parent module, but uses
/// XChaCha20-Poly1305 instead of XSalsa20-Poly1305. The main advantage is the
/// extended nonce size (24 bytes), which makes it safer for random nonce generation.
pub mod curve25519xchacha20poly1305;

#[cfg(test)]
mod tests {
    use super::*;
    // Random is used in other test functions

    #[test]
    fn test_keypair_generation() {
        let keypair = KeyPair::generate();
        let (pk, sk) = (keypair.public_key, keypair.secret_key);
        assert_eq!(pk.as_bytes().len(), PUBLICKEYBYTES);
        assert_eq!(sk.as_bytes().len(), SECRETKEYBYTES);
    }

    #[test]
    fn test_seed_keypair() {
        // Generate a random seed
        let mut seed = [0u8; SECRETKEYBYTES];
        crate::random::fill_bytes(&mut seed);

        // Use the from_seed method of KeyPair
        let keypair1 = KeyPair::from_seed(&seed).unwrap();
        let keypair2 = KeyPair::from_seed(&seed).unwrap();

        // Both keypairs should be identical
        assert_eq!(keypair1.public_key, keypair2.public_key);
        assert_eq!(keypair1.secret_key, keypair2.secret_key);

        // Test with invalid seed length
        let invalid_seed = [0u8; SECRETKEYBYTES - 1];
        assert!(KeyPair::from_seed(&invalid_seed).is_err());
    }

    #[test]
    fn test_seal_open() {
        let alice_keypair = KeyPair::generate();
        let (alice_pk, alice_sk) = (alice_keypair.public_key, alice_keypair.secret_key);
        let bob_keypair = KeyPair::generate();
        let (bob_pk, bob_sk) = (bob_keypair.public_key, bob_keypair.secret_key);
        let nonce = Nonce::generate();
        let message = b"Hello, world!";

        // Alice encrypts a message for Bob
        let ciphertext = seal(message, &nonce, &bob_pk, &alice_sk).unwrap();

        // Bob decrypts the message from Alice
        let decrypted = open(&ciphertext, &nonce, &alice_pk, &bob_sk).unwrap();

        assert_eq!(decrypted, message);
    }

    #[test]
    fn test_beforenm_afternm() {
        let alice_keypair = KeyPair::generate();
        let (alice_pk, alice_sk) = (alice_keypair.public_key, alice_keypair.secret_key);
        let bob_keypair = KeyPair::generate();
        let (bob_pk, bob_sk) = (bob_keypair.public_key, bob_keypair.secret_key);
        let nonce = Nonce::generate();
        let message = b"Hello, precomputed key!";

        // Alice precomputes a shared key with Bob
        let alice_precomputed = beforenm(&bob_pk, &alice_sk).unwrap();

        // Bob precomputes a shared key with Alice
        let bob_precomputed = beforenm(&alice_pk, &bob_sk).unwrap();

        // Alice encrypts a message for Bob using the precomputed key
        let ciphertext = seal_afternm(message, &nonce, &alice_precomputed).unwrap();

        // Bob decrypts the message from Alice using the precomputed key
        let decrypted = open_afternm(&ciphertext, &nonce, &bob_precomputed).unwrap();

        assert_eq!(decrypted, message);
    }

    #[test]
    fn test_seal_detached_open_detached() {
        let alice_keypair = KeyPair::generate();
        let (alice_pk, alice_sk) = (alice_keypair.public_key, alice_keypair.secret_key);
        let bob_keypair = KeyPair::generate();
        let (bob_pk, bob_sk) = (bob_keypair.public_key, bob_keypair.secret_key);
        let nonce = Nonce::generate();
        let message = b"Hello, detached authentication!";

        // Alice encrypts a message for Bob with detached authentication
        let (ciphertext, mac) = seal_detached(message, &nonce, &bob_pk, &alice_sk).unwrap();

        // Bob decrypts the message from Alice with detached authentication
        let decrypted = open_detached(&ciphertext, &mac, &nonce, &alice_pk, &bob_sk).unwrap();

        assert_eq!(decrypted, message);
    }

    #[test]
    fn test_seal_detached_open_detached_afternm() {
        let alice_keypair = KeyPair::generate();
        let (alice_pk, alice_sk) = (alice_keypair.public_key, alice_keypair.secret_key);
        let bob_keypair = KeyPair::generate();
        let (bob_pk, bob_sk) = (bob_keypair.public_key, bob_keypair.secret_key);
        let nonce = Nonce::generate();
        let message = b"Hello, detached authentication with precomputed key!";

        // Alice precomputes a shared key with Bob
        let alice_precomputed = beforenm(&bob_pk, &alice_sk).unwrap();

        // Bob precomputes a shared key with Alice
        let bob_precomputed = beforenm(&alice_pk, &bob_sk).unwrap();

        // Alice encrypts a message for Bob with detached authentication using precomputed key
        let (ciphertext, mac) = seal_detached_afternm(message, &nonce, &alice_precomputed).unwrap();

        // Bob decrypts the message from Alice with detached authentication using precomputed key
        let decrypted = open_detached_afternm(&ciphertext, &mac, &nonce, &bob_precomputed).unwrap();

        assert_eq!(decrypted, message);
    }

    #[test]
    fn test_seal_box_open_sealed_box() {
        let bob_keypair = KeyPair::generate();
        let (bob_pk, bob_sk) = (bob_keypair.public_key, bob_keypair.secret_key);
        let message = b"Hello, anonymous sender!";

        // Anonymous sender encrypts a message for Bob
        let sealed_box = seal_box(message, &bob_pk).unwrap();

        // Bob decrypts the message from the anonymous sender
        let decrypted = open_sealed_box(&sealed_box, &bob_pk, &bob_sk).unwrap();

        assert_eq!(decrypted, message);
    }

    #[test]
    fn test_nacl_compatibility() {
        let alice_keypair = KeyPair::generate();
        let (alice_pk, alice_sk) = (alice_keypair.public_key, alice_keypair.secret_key);
        let bob_keypair = KeyPair::generate();
        let (bob_pk, bob_sk) = (bob_keypair.public_key, bob_keypair.secret_key);
        let nonce = Nonce::generate();

        // Create a message with ZEROBYTES zero bytes at the beginning
        let message = b"Hello, NaCl!";
        let mut padded_message = vec![0u8; ZEROBYTES + message.len()];
        padded_message[ZEROBYTES..].copy_from_slice(message);

        // Alice encrypts a message for Bob using NaCl compatibility mode
        let padded_ciphertext = seal_nacl(&padded_message, &nonce, &bob_pk, &alice_sk).unwrap();

        // Bob decrypts the message from Alice using NaCl compatibility mode
        let decrypted_padded = open_nacl(&padded_ciphertext, &nonce, &alice_pk, &bob_sk).unwrap();

        assert_eq!(decrypted_padded, padded_message);
    }

    #[test]
    fn test_nacl_compatibility_afternm() {
        let alice_keypair = KeyPair::generate();
        let (alice_pk, alice_sk) = (alice_keypair.public_key, alice_keypair.secret_key);
        let bob_keypair = KeyPair::generate();
        let (bob_pk, bob_sk) = (bob_keypair.public_key, bob_keypair.secret_key);
        let nonce = Nonce::generate();

        // Create a message with ZEROBYTES zero bytes at the beginning
        let message = b"Hello, NaCl afternm!";
        let mut padded_message = vec![0u8; ZEROBYTES + message.len()];
        padded_message[ZEROBYTES..].copy_from_slice(message);

        // Alice precomputes a shared key with Bob
        let alice_precomputed = beforenm(&bob_pk, &alice_sk).unwrap();

        // Bob precomputes a shared key with Alice
        let bob_precomputed = beforenm(&alice_pk, &bob_sk).unwrap();

        // Alice encrypts a message for Bob using NaCl compatibility mode with precomputed key
        let padded_ciphertext =
            seal_nacl_afternm(&padded_message, &nonce, &alice_precomputed).unwrap();

        // Bob decrypts the message from Alice using NaCl compatibility mode with precomputed key
        let decrypted_padded =
            open_nacl_afternm(&padded_ciphertext, &nonce, &bob_precomputed).unwrap();

        assert_eq!(decrypted_padded, padded_message);
    }

    #[test]
    fn test_publickey_traits() {
        let keypair = KeyPair::generate();
        let pk = keypair.public_key;

        // Test From<[u8; N]> for PublicKey
        let bytes: [u8; PUBLICKEYBYTES] = pk.clone().into();
        let pk2 = PublicKey::from(bytes);
        assert_eq!(pk.as_bytes(), pk2.as_bytes());

        // Test From<PublicKey> for [u8; N]
        let extracted: [u8; PUBLICKEYBYTES] = pk.into();
        assert_eq!(extracted, bytes);
    }

    #[test]
    fn test_secretkey_traits() {
        let keypair = KeyPair::generate();
        let sk = keypair.secret_key;

        // Test From<[u8; N]> for SecretKey
        let bytes: [u8; SECRETKEYBYTES] = sk.clone().into();
        let sk2 = SecretKey::from(bytes);
        assert_eq!(sk.as_bytes(), sk2.as_bytes());

        // Test From<SecretKey> for [u8; N]
        let extracted: [u8; SECRETKEYBYTES] = sk.into();
        assert_eq!(extracted, bytes);
    }

    #[test]
    fn test_precomputedkey_traits() {
        let alice_keypair = KeyPair::generate();
        let bob_keypair = KeyPair::generate();

        let precomputed = beforenm(&bob_keypair.public_key, &alice_keypair.secret_key).unwrap();

        // Test TryFrom<&[u8]>
        let bytes = precomputed.as_bytes();
        let pk2 = PrecomputedKey::try_from(&bytes[..]).unwrap();
        assert_eq!(precomputed.as_bytes(), pk2.as_bytes());

        // Test invalid length
        let invalid_bytes = [0u8; BEFORENMBYTES - 1];
        assert!(PrecomputedKey::try_from(&invalid_bytes[..]).is_err());

        // Test From<[u8; N]>
        let bytes: [u8; BEFORENMBYTES] = precomputed.clone().into();
        let pk3 = PrecomputedKey::from(bytes);
        assert_eq!(precomputed.as_bytes(), pk3.as_bytes());

        // Test From<PrecomputedKey> for [u8; N]
        let extracted: [u8; BEFORENMBYTES] = precomputed.into();
        assert_eq!(extracted, bytes);

        // Test AsRef<[u8]>
        let precomputed2 = beforenm(&alice_keypair.public_key, &bob_keypair.secret_key).unwrap();
        let slice_ref: &[u8] = precomputed2.as_ref();
        assert_eq!(slice_ref.len(), BEFORENMBYTES);
    }
}