ipcrypt2 0.9.1

A Rust library for format-preserving encryption of IP addresses. Supports both deterministic and non-deterministic encryption modes.
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
#![doc = include_str!("../README.md")]

use std::error::Error;
use std::ffi::{CStr, CString};
use std::fmt;
use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
use std::os::raw::{c_char, c_int};

pub mod reexports {
    pub use rand;
}

#[repr(C)]
pub struct IPCrypt {
    opaque: [u8; 16 * 11],
}

#[repr(C)]
pub struct IPCryptNDX {
    opaque: [u8; 16 * 11 * 2],
}

#[repr(C)]
pub struct IPCryptPFX {
    opaque: [u8; 16 * 11 * 2],
}

extern "C" {
    fn ipcrypt_str_to_ip16(ip16: *mut u8, ip_str: *const c_char) -> c_int;
    fn ipcrypt_ip16_to_str(ip_str: *mut c_char, ip16: *const u8) -> usize;

    fn ipcrypt_init(ipcrypt: *mut IPCrypt, key: *const u8);
    fn ipcrypt_deinit(ipcrypt: *mut IPCrypt);
    fn ipcrypt_encrypt_ip16(ipcrypt: *const IPCrypt, ip16: *mut u8);
    fn ipcrypt_decrypt_ip16(ipcrypt: *const IPCrypt, ip16: *mut u8);
    fn ipcrypt_encrypt_ip_str(
        ipcrypt: *const IPCrypt,
        encrypted_ip_str: *mut c_char,
        ip_str: *const c_char,
    ) -> usize;
    fn ipcrypt_decrypt_ip_str(
        ipcrypt: *const IPCrypt,
        ip_str: *mut c_char,
        encrypted_ip_str: *const c_char,
    ) -> usize;

    fn ipcrypt_nd_encrypt_ip16(
        ipcrypt: *const IPCrypt,
        ndip: *mut u8,
        ip16: *const u8,
        random: *const u8,
    );
    fn ipcrypt_nd_decrypt_ip16(ipcrypt: *const IPCrypt, ip16: *mut u8, ndip: *const u8);
    fn ipcrypt_nd_encrypt_ip_str(
        ipcrypt: *const IPCrypt,
        encrypted_ip_str: *mut c_char,
        ip_str: *const c_char,
        random: *const u8,
    ) -> usize;
    fn ipcrypt_nd_decrypt_ip_str(
        ipcrypt: *const IPCrypt,
        ip_str: *mut c_char,
        encrypted_ip_str: *const c_char,
    ) -> usize;

    fn ipcrypt_ndx_init(ipcrypt: *mut IPCryptNDX, key: *const u8);
    fn ipcrypt_ndx_deinit(ipcrypt: *mut IPCryptNDX);
    fn ipcrypt_ndx_encrypt_ip16(
        ipcrypt: *const IPCryptNDX,
        ndip: *mut u8,
        ip16: *const u8,
        random: *const u8,
    );
    fn ipcrypt_ndx_decrypt_ip16(ipcrypt: *const IPCryptNDX, ip16: *mut u8, ndip: *const u8);
    fn ipcrypt_ndx_encrypt_ip_str(
        ipcrypt: *const IPCryptNDX,
        encrypted_ip_str: *mut c_char,
        ip_str: *const c_char,
        random: *const u8,
    ) -> usize;
    fn ipcrypt_ndx_decrypt_ip_str(
        ipcrypt: *const IPCryptNDX,
        ip_str: *mut c_char,
        encrypted_ip_str: *const c_char,
    ) -> usize;

    fn ipcrypt_pfx_init(ipcrypt: *mut IPCryptPFX, key: *const u8);
    fn ipcrypt_pfx_deinit(ipcrypt: *mut IPCryptPFX);
    fn ipcrypt_pfx_encrypt_ip16(ipcrypt: *const IPCryptPFX, ip16: *mut u8);
    fn ipcrypt_pfx_decrypt_ip16(ipcrypt: *const IPCryptPFX, ip16: *mut u8);
    fn ipcrypt_pfx_encrypt_ip_str(
        ipcrypt: *const IPCryptPFX,
        encrypted_ip_str: *mut c_char,
        ip_str: *const c_char,
    ) -> usize;
    fn ipcrypt_pfx_decrypt_ip_str(
        ipcrypt: *const IPCryptPFX,
        ip_str: *mut c_char,
        encrypted_ip_str: *const c_char,
    ) -> usize;
}

/// An error type for the safe Ipcrypt interface.
#[derive(Debug)]
pub enum IpcryptError {
    /// Input contains a null byte
    NullByteInInput,
    /// Failed to convert bytes to UTF-8 string
    Utf8Error(std::str::Utf8Error),
    /// Operation failed (e.g., invalid IP format)
    OperationFailed,
}

impl fmt::Display for IpcryptError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            IpcryptError::NullByteInInput => write!(f, "input contains a null byte"),
            IpcryptError::Utf8Error(e) => write!(f, "UTF-8 conversion error: {}", e),
            IpcryptError::OperationFailed => write!(f, "operation failed"),
        }
    }
}

impl Error for IpcryptError {
    fn source(&self) -> Option<&(dyn Error + 'static)> {
        match self {
            IpcryptError::Utf8Error(e) => Some(e),
            _ => None,
        }
    }
}

impl From<std::str::Utf8Error> for IpcryptError {
    fn from(err: std::str::Utf8Error) -> Self {
        IpcryptError::Utf8Error(err)
    }
}

/// A structure representing the IPCrypt context.
///
/// This struct provides methods for encrypting and decrypting IP addresses
/// using both deterministic and non-deterministic modes.
///
/// # Examples
///
/// ```
/// use ipcrypt2::Ipcrypt;
///
/// let key = Ipcrypt::generate_key();
/// let ipcrypt = Ipcrypt::new(key);
///
/// // Encrypt an IP address
/// let ip = "192.168.1.1";
/// let encrypted = ipcrypt.encrypt_ip_str(ip).unwrap();
/// let decrypted = ipcrypt.decrypt_ip_str(&encrypted).unwrap();
/// assert_eq!(ip, decrypted);
/// ```
pub struct Ipcrypt {
    inner: IPCrypt,
}

impl Ipcrypt {
    /// The number of bytes required for the encryption key.
    pub const KEY_BYTES: usize = 16;

    /// The number of bytes in the tweak used for non-deterministic encryption.
    pub const TWEAK_BYTES: usize = 8;

    /// The number of bytes in the encrypted output for non-deterministic mode.
    pub const NDIP_BYTES: usize = 24;

    /// The maximum number of bytes in the encrypted IP string (including null terminator).
    pub const NDIP_STR_BYTES: usize = 48 + 1;

    /// Generates a new random key for encryption.
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::Ipcrypt;
    ///
    /// let key = Ipcrypt::generate_key();
    /// let ipcrypt = Ipcrypt::new(key);
    /// ```
    pub fn generate_key() -> [u8; Self::KEY_BYTES] {
        rand::random()
    }

    /// Creates a new Ipcrypt instance with the given key.
    ///
    /// # Arguments
    ///
    /// * `key` - A 16-byte array containing the encryption key.
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::Ipcrypt;
    ///
    /// let key = [0u8; 16];
    /// let ipcrypt = Ipcrypt::new(key);
    /// ```
    pub fn new(key: [u8; Self::KEY_BYTES]) -> Self {
        // Safety: IPCrypt is a C struct with a fixed size and no alignment requirements
        let mut inner = std::mem::MaybeUninit::<IPCrypt>::uninit();

        // Safety: We have a valid pointer to uninitialized memory and a valid key pointer
        unsafe {
            ipcrypt_init(inner.as_mut_ptr(), key.as_ptr());
            Self {
                inner: inner.assume_init(),
            }
        }
    }

    /// Encrypts a 16-byte IP address in place.
    pub fn encrypt_ip16(&self, ip: &mut [u8; 16]) {
        // Safety: We have a valid IPCrypt instance and a valid mutable pointer to 16 bytes
        unsafe {
            ipcrypt_encrypt_ip16(&self.inner, ip.as_mut_ptr());
        }
    }

    /// Decrypts a 16-byte IP address in place.
    pub fn decrypt_ip16(&self, ip: &mut [u8; 16]) {
        // Safety: We have a valid IPCrypt instance and a valid mutable pointer to 16 bytes
        unsafe {
            ipcrypt_decrypt_ip16(&self.inner, ip.as_mut_ptr());
        }
    }

    /// Encrypts an IP address string (IPv4 or IPv6).
    ///
    /// On success, returns the encrypted IP string.
    pub fn encrypt_ip_str(&self, ip: &str) -> Result<String, IpcryptError> {
        let c_ip = CString::new(ip).map_err(|_| IpcryptError::NullByteInInput)?;
        let mut buffer = [0u8; MAX_IP_STR_BYTES];

        // Safety: We have valid pointers to initialized memory and a valid C string
        let ret = unsafe {
            ipcrypt_encrypt_ip_str(
                &self.inner,
                buffer.as_mut_ptr() as *mut c_char,
                c_ip.as_ptr(),
            )
        };

        if ret == 0 {
            return Err(IpcryptError::OperationFailed);
        }

        // Safety: The buffer is null-terminated and contains valid UTF-8
        unsafe {
            CStr::from_ptr(buffer.as_ptr() as *const c_char)
                .to_str()
                .map(|s| s.to_owned())
                .map_err(Into::into)
        }
    }

    /// Decrypts an encrypted IP address string.
    ///
    /// On success, returns the decrypted IP string.
    pub fn decrypt_ip_str(&self, encrypted: &str) -> Result<String, IpcryptError> {
        let c_encrypted = CString::new(encrypted).map_err(|_| IpcryptError::NullByteInInput)?;
        let mut buffer = [0u8; MAX_IP_STR_BYTES];
        let ret = unsafe {
            ipcrypt_decrypt_ip_str(
                &self.inner,
                buffer.as_mut_ptr() as *mut c_char,
                c_encrypted.as_ptr(),
            )
        };
        if ret == 0 {
            return Err(IpcryptError::OperationFailed);
        }
        unsafe {
            CStr::from_ptr(buffer.as_ptr() as *const c_char)
                .to_str()
                .map(|s| s.to_owned())
                .map_err(Into::into)
        }
    }

    /// Non-deterministically encrypts a 16-byte IP address.
    ///
    /// Returns a 24-byte encrypted value.
    pub fn nd_encrypt_ip16(&self, ip: &[u8; 16]) -> [u8; Self::NDIP_BYTES] {
        let random: [u8; Self::TWEAK_BYTES] = rand::random();
        let mut ndip = [0u8; Self::NDIP_BYTES];
        unsafe {
            ipcrypt_nd_encrypt_ip16(&self.inner, ndip.as_mut_ptr(), ip.as_ptr(), random.as_ptr());
        }
        ndip
    }

    /// Non-deterministically decrypts a 24-byte encrypted IP address.
    ///
    /// Returns the decrypted 16-byte IP address.
    pub fn nd_decrypt_ip16(&self, ndip: &[u8; Self::NDIP_BYTES]) -> [u8; 16] {
        let mut ip = [0u8; 16];
        unsafe {
            ipcrypt_nd_decrypt_ip16(&self.inner, ip.as_mut_ptr(), ndip.as_ptr());
        }
        ip
    }

    /// Non-deterministically encrypts an IP address string (IPv4 or IPv6).
    ///
    /// Returns a hex-encoded string.
    pub fn nd_encrypt_ip_str(&self, ip: &str) -> Result<String, IpcryptError> {
        let c_ip = CString::new(ip).map_err(|_| IpcryptError::NullByteInInput)?;
        let random: [u8; Self::TWEAK_BYTES] = rand::random();
        let mut buffer = [0u8; Self::NDIP_STR_BYTES];
        let ret = unsafe {
            ipcrypt_nd_encrypt_ip_str(
                &self.inner,
                buffer.as_mut_ptr() as *mut c_char,
                c_ip.as_ptr(),
                random.as_ptr(),
            )
        };
        if ret == 0 {
            return Err(IpcryptError::OperationFailed);
        }
        unsafe {
            CStr::from_ptr(buffer.as_ptr() as *const c_char)
                .to_str()
                .map(|s| s.to_owned())
                .map_err(Into::into)
        }
    }

    /// Non-deterministically decrypts a hex-encoded IP address string from non-deterministic mode.
    ///
    /// Returns the decrypted IP string on success.
    pub fn nd_decrypt_ip_str(&self, encrypted: &str) -> Result<String, IpcryptError> {
        let c_encrypted = CString::new(encrypted).map_err(|_| IpcryptError::NullByteInInput)?;
        let mut buffer = [0u8; MAX_IP_STR_BYTES];
        let ret = unsafe {
            ipcrypt_nd_decrypt_ip_str(
                &self.inner,
                buffer.as_mut_ptr() as *mut c_char,
                c_encrypted.as_ptr(),
            )
        };
        if ret == 0 {
            return Err(IpcryptError::OperationFailed);
        }
        unsafe {
            CStr::from_ptr(buffer.as_ptr() as *const c_char)
                .to_str()
                .map(|s| s.to_owned())
                .map_err(Into::into)
        }
    }

    /// Converts an IP address string (IPv4 or IPv6) to a 16-byte binary representation.
    ///
    /// Returns the binary representation as a 16-byte array on success.
    pub fn str_to_ip16(ip: &str) -> Result<[u8; 16], IpcryptError> {
        let c_ip = CString::new(ip).map_err(|_| IpcryptError::NullByteInInput)?;
        let mut ip16 = [0u8; 16];
        let ret = unsafe { ipcrypt_str_to_ip16(ip16.as_mut_ptr(), c_ip.as_ptr()) };
        if ret != 0 {
            Err(IpcryptError::OperationFailed)
        } else {
            Ok(ip16)
        }
    }

    /// Converts a 16-byte binary IP address into a string.
    ///
    /// Returns the IP string on success.
    pub fn ip16_to_str(ip16: &[u8; 16]) -> Result<String, IpcryptError> {
        let mut buffer = [0u8; MAX_IP_STR_BYTES];
        let ret = unsafe { ipcrypt_ip16_to_str(buffer.as_mut_ptr() as *mut c_char, ip16.as_ptr()) };
        if ret == 0 {
            return Err(IpcryptError::OperationFailed);
        }
        unsafe {
            CStr::from_ptr(buffer.as_ptr() as *const c_char)
                .to_str()
                .map(|s| s.to_owned())
                .map_err(Into::into)
        }
    }

    /// Encrypts an IP address and returns the result as a new IP address.
    ///
    /// # Arguments
    ///
    /// * `ip` - The IP address to encrypt
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::Ipcrypt;
    /// use std::net::IpAddr;
    ///
    /// let ipcrypt = Ipcrypt::new([0u8; 16]);
    /// let ip = "192.168.1.1".parse::<IpAddr>().unwrap();
    /// let encrypted = ipcrypt.encrypt_ipaddr(ip).unwrap();
    /// ```
    pub fn encrypt_ipaddr(&self, ip: IpAddr) -> Result<IpAddr, IpcryptError> {
        let mut ip16 = ipaddr_to_ip16(ip);
        self.encrypt_ip16(&mut ip16);
        ip16_to_ipaddr(ip16)
    }

    /// Decrypts an encrypted IP address and returns the result as a new IP address.
    ///
    /// # Arguments
    ///
    /// * `encrypted` - The encrypted IP address to decrypt
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::Ipcrypt;
    /// use std::net::IpAddr;
    ///
    /// let ipcrypt = Ipcrypt::new([0u8; 16]);
    /// let ip = "192.168.1.1".parse::<IpAddr>().unwrap();
    /// let encrypted = ipcrypt.encrypt_ipaddr(ip).unwrap();
    /// let decrypted = ipcrypt.decrypt_ipaddr(encrypted).unwrap();
    /// assert_eq!(ip, decrypted);
    /// ```
    pub fn decrypt_ipaddr(&self, encrypted: IpAddr) -> Result<IpAddr, IpcryptError> {
        let mut ip16 = ipaddr_to_ip16(encrypted);
        self.decrypt_ip16(&mut ip16);
        ip16_to_ipaddr(ip16)
    }

    /// Non-deterministically encrypts an IP address and returns the result as a byte array.
    ///
    /// # Arguments
    ///
    /// * `ip` - The IP address to encrypt
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::Ipcrypt;
    /// use std::net::IpAddr;
    ///
    /// let ipcrypt = Ipcrypt::new([0u8; 16]);
    /// let ip = "192.168.1.1".parse::<IpAddr>().unwrap();
    /// let encrypted = ipcrypt.nd_encrypt_ipaddr(ip).unwrap();
    /// ```
    pub fn nd_encrypt_ipaddr(&self, ip: IpAddr) -> Result<[u8; Self::NDIP_BYTES], IpcryptError> {
        let ip16 = ipaddr_to_ip16(ip);
        Ok(self.nd_encrypt_ip16(&ip16))
    }

    /// Non-deterministically decrypts an encrypted IP address and returns the result as a new IP address.
    ///
    /// # Arguments
    ///
    /// * `encrypted` - The encrypted IP address bytes to decrypt
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::Ipcrypt;
    /// use std::net::IpAddr;
    ///
    /// let ipcrypt = Ipcrypt::new([0u8; 16]);
    /// let ip = "192.168.1.1".parse::<IpAddr>().unwrap();
    /// let encrypted = ipcrypt.nd_encrypt_ipaddr(ip).unwrap();
    /// let decrypted = ipcrypt.nd_decrypt_ipaddr(encrypted).unwrap();
    /// assert_eq!(ip, decrypted);
    /// ```
    pub fn nd_decrypt_ipaddr(
        &self,
        encrypted: [u8; Self::NDIP_BYTES],
    ) -> Result<IpAddr, IpcryptError> {
        let decrypted = self.nd_decrypt_ip16(&encrypted);
        ip16_to_ipaddr(decrypted)
    }

    /// Non-deterministically encrypts an IP address and returns the result as a hex string.
    ///
    /// # Arguments
    ///
    /// * `ip` - The IP address to encrypt
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::Ipcrypt;
    /// use std::net::IpAddr;
    ///
    /// let ipcrypt = Ipcrypt::new([0u8; 16]);
    /// let ip = "192.168.1.1".parse::<IpAddr>().unwrap();
    /// let encrypted = ipcrypt.nd_encrypt_ipaddr_str(ip).unwrap();
    /// ```
    pub fn nd_encrypt_ipaddr_str(&self, ip: IpAddr) -> Result<String, IpcryptError> {
        let ip_str = match ip {
            IpAddr::V4(v4) => v4.to_string(),
            IpAddr::V6(v6) => v6.to_string(),
        };
        self.nd_encrypt_ip_str(&ip_str)
    }

    /// Non-deterministically decrypts an encrypted IP address string and returns the result as a new IP address.
    ///
    /// # Arguments
    ///
    /// * `encrypted` - The encrypted IP address string to decrypt
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::Ipcrypt;
    /// use std::net::IpAddr;
    ///
    /// let ipcrypt = Ipcrypt::new([0u8; 16]);
    /// let ip = "192.168.1.1".parse::<IpAddr>().unwrap();
    /// let encrypted = ipcrypt.nd_encrypt_ipaddr_str(ip).unwrap();
    /// let decrypted = ipcrypt.nd_decrypt_ipaddr_str(&encrypted).unwrap();
    /// assert_eq!(ip, decrypted);
    /// ```
    pub fn nd_decrypt_ipaddr_str(&self, encrypted: &str) -> Result<IpAddr, IpcryptError> {
        let decrypted_str = self.nd_decrypt_ip_str(encrypted)?;
        let ip = Ipcrypt::str_to_ip16(&decrypted_str)?;
        ip16_to_ipaddr(ip)
    }

    /// Creates a new Ipcrypt instance with a randomly generated key.
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::Ipcrypt;
    ///
    /// let ipcrypt = Ipcrypt::new_random();
    /// ```
    pub fn new_random() -> Self {
        Self::new(Self::generate_key())
    }

    /// Encrypts an IP address string and returns the result as a new string.
    /// This is a convenience method that handles both IPv4 and IPv6 addresses.
    ///
    /// # Arguments
    ///
    /// * `ip` - The IP address string to encrypt (IPv4 or IPv6)
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::Ipcrypt;
    ///
    /// let ipcrypt = Ipcrypt::new_random();
    /// let encrypted = ipcrypt.encrypt("192.168.1.1").unwrap();
    /// let decrypted = ipcrypt.decrypt(&encrypted).unwrap();
    /// assert_eq!("192.168.1.1", decrypted);
    /// ```
    pub fn encrypt(&self, ip: &str) -> Result<String, IpcryptError> {
        self.encrypt_ip_str(ip)
    }

    /// Decrypts an encrypted IP address string.
    /// This is a convenience method that handles both IPv4 and IPv6 addresses.
    ///
    /// # Arguments
    ///
    /// * `encrypted` - The encrypted IP address string to decrypt
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::Ipcrypt;
    ///
    /// let ipcrypt = Ipcrypt::new_random();
    /// let encrypted = ipcrypt.encrypt("192.168.1.1").unwrap();
    /// let decrypted = ipcrypt.decrypt(&encrypted).unwrap();
    /// assert_eq!("192.168.1.1", decrypted);
    /// ```
    pub fn decrypt(&self, encrypted: &str) -> Result<String, IpcryptError> {
        self.decrypt_ip_str(encrypted)
    }

    /// Non-deterministically encrypts an IP address string and returns the result as a hex string.
    /// This is a convenience method that handles both IPv4 and IPv6 addresses.
    ///
    /// # Arguments
    ///
    /// * `ip` - The IP address string to encrypt (IPv4 or IPv6)
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::Ipcrypt;
    ///
    /// let ipcrypt = Ipcrypt::new_random();
    /// let encrypted = ipcrypt.encrypt_nd("192.168.1.1").unwrap();
    /// let decrypted = ipcrypt.decrypt_nd(&encrypted).unwrap();
    /// assert_eq!("192.168.1.1", decrypted);
    /// ```
    pub fn encrypt_nd(&self, ip: &str) -> Result<String, IpcryptError> {
        self.nd_encrypt_ip_str(ip)
    }

    /// Non-deterministically decrypts an encrypted IP address string.
    /// This is a convenience method that handles both IPv4 and IPv6 addresses.
    ///
    /// # Arguments
    ///
    /// * `encrypted` - The encrypted IP address string to decrypt
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::Ipcrypt;
    ///
    /// let ipcrypt = Ipcrypt::new_random();
    /// let encrypted = ipcrypt.encrypt_nd("192.168.1.1").unwrap();
    /// let decrypted = ipcrypt.decrypt_nd(&encrypted).unwrap();
    /// assert_eq!("192.168.1.1", decrypted);
    /// ```
    pub fn decrypt_nd(&self, encrypted: &str) -> Result<String, IpcryptError> {
        self.nd_decrypt_ip_str(encrypted)
    }

    /// Converts an IP address string to its 16-byte representation.
    /// This is a convenience method that handles both IPv4 and IPv6 addresses.
    ///
    /// # Arguments
    ///
    /// * `ip` - The IP address string to convert
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::Ipcrypt;
    ///
    /// let ip16 = Ipcrypt::to_bytes("192.168.1.1").unwrap();
    /// let ip_str = Ipcrypt::from_bytes(&ip16).unwrap();
    /// assert_eq!("192.168.1.1", ip_str);
    /// ```
    pub fn to_bytes(ip: &str) -> Result<[u8; 16], IpcryptError> {
        Self::str_to_ip16(ip)
    }

    /// Converts a 16-byte IP address representation to a string.
    /// This is a convenience method that handles both IPv4 and IPv6 addresses.
    ///
    /// # Arguments
    ///
    /// * `ip16` - The 16-byte IP address to convert
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::Ipcrypt;
    ///
    /// let ip16 = Ipcrypt::to_bytes("192.168.1.1").unwrap();
    /// let ip_str = Ipcrypt::from_bytes(&ip16).unwrap();
    /// assert_eq!("192.168.1.1", ip_str);
    /// ```
    pub fn from_bytes(ip16: &[u8; 16]) -> Result<String, IpcryptError> {
        Self::ip16_to_str(ip16)
    }
}

impl Drop for Ipcrypt {
    fn drop(&mut self) {
        unsafe {
            ipcrypt_deinit(&mut self.inner);
        }
    }
}

/// A structure representing the IPCrypt context for NDX mode.
///
/// It can be only used for non-deterministic encryption with 16-byte tweaks.
///
/// Non-deterministic encryption in ND mode runs slower than encryption with 8-byte tweaks.
/// Ciphertexts are also longer, and the key is 32 byte long. However, the 16-byte tweak has higher
/// usage limits before collisions occur.
pub struct IpcryptNdx {
    inner: IPCryptNDX,
}

impl IpcryptNdx {
    /// The maximum number of bytes in the encrypted IP string (including null terminator) in NDX mode.
    pub const KEY_BYTES: usize = 32;

    /// The number of bytes in the tweak used for encryption/decryption in NDX mode.
    pub const TWEAK_BYTES: usize = 16;

    /// The maximum number of bytes in the encrypted IP string (including null terminator) in NDX mode.
    pub const NDIP_BYTES: usize = 32;

    /// The maximum number of bytes in the encrypted IP string (including null terminator) in NDX mode.
    pub const NDIP_STR_BYTES: usize = 64 + 1;

    /// Creates a random key for the Ipcrypt instance.
    pub fn generate_key() -> [u8; Self::KEY_BYTES] {
        rand::random()
    }

    /// Creates a new Ipcrypt instance with the given secret key.
    pub fn new(key: [u8; Self::KEY_BYTES]) -> Self {
        let mut inner = std::mem::MaybeUninit::<IPCryptNDX>::uninit();
        unsafe {
            ipcrypt_ndx_init(inner.as_mut_ptr(), key.as_ptr());
            Self {
                inner: inner.assume_init(),
            }
        }
    }

    /// Non-deterministically encrypts a 16-byte IP address.
    ///
    /// Returns a 24-byte encrypted value.
    pub fn nd_encrypt_ip16(&self, ip: &[u8; 16]) -> [u8; Self::NDIP_BYTES] {
        let random: [u8; Self::TWEAK_BYTES] = rand::random();
        let mut ndip = [0u8; Self::NDIP_BYTES];
        unsafe {
            ipcrypt_ndx_encrypt_ip16(&self.inner, ndip.as_mut_ptr(), ip.as_ptr(), random.as_ptr());
        }
        ndip
    }

    /// Non-deterministically decrypts a 24-byte encrypted IP address.
    ///
    /// Returns the decrypted 16-byte IP address.
    pub fn nd_decrypt_ip16(&self, ndip: &[u8; Self::NDIP_BYTES]) -> [u8; 16] {
        let mut ip = [0u8; 16];
        unsafe {
            ipcrypt_ndx_decrypt_ip16(&self.inner, ip.as_mut_ptr(), ndip.as_ptr());
        }
        ip
    }

    /// Non-deterministically encrypts an IP address string (IPv4 or IPv6).
    ///
    /// Returns a hex-encoded string.
    pub fn nd_encrypt_ip_str(&self, ip: &str) -> Result<String, IpcryptError> {
        let c_ip = CString::new(ip).map_err(|_| IpcryptError::NullByteInInput)?;
        let random: [u8; Self::TWEAK_BYTES] = rand::random();
        let mut buffer = [0u8; Self::NDIP_STR_BYTES];
        let ret = unsafe {
            ipcrypt_ndx_encrypt_ip_str(
                &self.inner,
                buffer.as_mut_ptr() as *mut c_char,
                c_ip.as_ptr(),
                random.as_ptr(),
            )
        };
        if ret == 0 {
            return Err(IpcryptError::OperationFailed);
        }
        unsafe {
            CStr::from_ptr(buffer.as_ptr() as *const c_char)
                .to_str()
                .map(|s| s.to_owned())
                .map_err(Into::into)
        }
    }

    /// Non-deterministically decrypts a hex-encoded IP address string from non-deterministic mode.
    ///
    /// Returns the decrypted IP string on success.
    pub fn nd_decrypt_ip_str(&self, encrypted: &str) -> Result<String, IpcryptError> {
        let c_encrypted = CString::new(encrypted).map_err(|_| IpcryptError::NullByteInInput)?;
        let mut buffer = [0u8; MAX_IP_STR_BYTES];
        let ret = unsafe {
            ipcrypt_ndx_decrypt_ip_str(
                &self.inner,
                buffer.as_mut_ptr() as *mut c_char,
                c_encrypted.as_ptr(),
            )
        };
        if ret == 0 {
            return Err(IpcryptError::OperationFailed);
        }
        unsafe {
            CStr::from_ptr(buffer.as_ptr() as *const c_char)
                .to_str()
                .map(|s| s.to_owned())
                .map_err(Into::into)
        }
    }

    // --- Additional interfaces using std::net::IpAddr ---

    /// Non-deterministically encrypts an `IpAddr` using the IP string interface.
    ///
    /// Returns the encrypted IP as an `IpAddr`.
    pub fn nd_encrypt_ipaddr(&self, ip: IpAddr) -> Result<[u8; Self::NDIP_BYTES], IpcryptError> {
        let ip_str = ipaddr_to_ip16(ip);
        let encrypted = self.nd_encrypt_ip16(&ip_str);
        Ok(encrypted)
    }

    /// Non-deterministically decrypts an encrypted `IpAddr` (provided as an `IpAddr` type).
    ///
    /// Returns the original `IpAddr` on success.
    pub fn nd_decrypt_ipaddr(
        &self,
        encrypted: [u8; Self::NDIP_BYTES],
    ) -> Result<IpAddr, IpcryptError> {
        let decrypted = self.nd_decrypt_ip16(&encrypted);
        let decrypted_ip = ip16_to_ipaddr(decrypted)?;
        Ok(decrypted_ip)
    }

    /// Non-deterministically encrypts an IP address (IPv4 or IPv6).
    ///
    /// Returns a hex-encoded string.
    pub fn nd_encrypt_ipaddr_str(&self, ip: IpAddr) -> Result<String, IpcryptError> {
        let ip_str = match ip {
            IpAddr::V4(v4) => v4.to_string(),
            IpAddr::V6(v6) => v6.to_string(),
        };
        self.nd_encrypt_ip_str(&ip_str)
    }

    /// Non-deterministically decrypts an encrypted IP address string.
    ///
    /// Returns the decrypted `IpAddr` on success.
    pub fn nd_decrypt_ipaddr_str(&self, encrypted: &str) -> Result<IpAddr, IpcryptError> {
        let decrypted_str = self.nd_decrypt_ip_str(encrypted)?;
        let ip = Ipcrypt::str_to_ip16(&decrypted_str)?;
        ip16_to_ipaddr(ip)
    }

    /// Creates a new IpcryptNdx instance with a randomly generated key.
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::IpcryptNdx;
    ///
    /// let ipcrypt = IpcryptNdx::new_random();
    /// ```
    pub fn new_random() -> Self {
        Self::new(Self::generate_key())
    }

    /// Non-deterministically encrypts an IP address string and returns the result as a hex string.
    /// This is a convenience method that handles both IPv4 and IPv6 addresses.
    ///
    /// # Arguments
    ///
    /// * `ip` - The IP address string to encrypt (IPv4 or IPv6)
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::IpcryptNdx;
    ///
    /// let ipcrypt = IpcryptNdx::new_random();
    /// let encrypted = ipcrypt.encrypt("192.168.1.1").unwrap();
    /// let decrypted = ipcrypt.decrypt(&encrypted).unwrap();
    /// assert_eq!("192.168.1.1", decrypted);
    /// ```
    pub fn encrypt(&self, ip: &str) -> Result<String, IpcryptError> {
        self.nd_encrypt_ip_str(ip)
    }

    /// Non-deterministically decrypts an encrypted IP address string.
    /// This is a convenience method that handles both IPv4 and IPv6 addresses.
    ///
    /// # Arguments
    ///
    /// * `encrypted` - The encrypted IP address string to decrypt
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::IpcryptNdx;
    ///
    /// let ipcrypt = IpcryptNdx::new_random();
    /// let encrypted = ipcrypt.encrypt("192.168.1.1").unwrap();
    /// let decrypted = ipcrypt.decrypt(&encrypted).unwrap();
    /// assert_eq!("192.168.1.1", decrypted);
    /// ```
    pub fn decrypt(&self, encrypted: &str) -> Result<String, IpcryptError> {
        self.nd_decrypt_ip_str(encrypted)
    }

    /// Converts an IP address string to its 16-byte representation.
    /// This is a convenience method that handles both IPv4 and IPv6 addresses.
    ///
    /// # Arguments
    ///
    /// * `ip` - The IP address string to convert
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::IpcryptNdx;
    ///
    /// let ip16 = IpcryptNdx::to_bytes("192.168.1.1").unwrap();
    /// let ip_str = IpcryptNdx::from_bytes(&ip16).unwrap();
    /// assert_eq!("192.168.1.1", ip_str);
    /// ```
    pub fn to_bytes(ip: &str) -> Result<[u8; 16], IpcryptError> {
        Ipcrypt::str_to_ip16(ip)
    }

    /// Converts a 16-byte IP address representation to a string.
    /// This is a convenience method that handles both IPv4 and IPv6 addresses.
    ///
    /// # Arguments
    ///
    /// * `ip16` - The 16-byte IP address to convert
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::IpcryptNdx;
    ///
    /// let ip16 = IpcryptNdx::to_bytes("192.168.1.1").unwrap();
    /// let ip_str = IpcryptNdx::from_bytes(&ip16).unwrap();
    /// assert_eq!("192.168.1.1", ip_str);
    /// ```
    pub fn from_bytes(ip16: &[u8; 16]) -> Result<String, IpcryptError> {
        Ipcrypt::ip16_to_str(ip16)
    }
}

impl Drop for IpcryptNdx {
    fn drop(&mut self) {
        unsafe {
            ipcrypt_ndx_deinit(&mut self.inner);
        }
    }
}

/// A structure representing the IPCrypt context for PFX mode.
///
/// PFX mode provides prefix-preserving encryption, where IP addresses with the same prefix
/// produce encrypted IP addresses with the same prefix. This is useful for maintaining
/// network topology relationships while still encrypting the addresses.
pub struct IpcryptPfx {
    inner: IPCryptPFX,
}

impl IpcryptPfx {
    /// The number of bytes required for the encryption key.
    pub const KEY_BYTES: usize = 32;

    /// Generates a new random key for encryption.
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::IpcryptPfx;
    ///
    /// let key = IpcryptPfx::generate_key();
    /// let ipcrypt = IpcryptPfx::new(key);
    /// ```
    pub fn generate_key() -> [u8; Self::KEY_BYTES] {
        rand::random()
    }

    /// Creates a new IpcryptPfx instance with the given key.
    ///
    /// # Arguments
    ///
    /// * `key` - A 32-byte array containing the encryption key.
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::IpcryptPfx;
    ///
    /// let key = [0u8; 32];
    /// let ipcrypt = IpcryptPfx::new(key);
    /// ```
    pub fn new(key: [u8; Self::KEY_BYTES]) -> Self {
        // Safety: IPCryptPFX is a C struct with a fixed size and no alignment requirements
        let mut inner = std::mem::MaybeUninit::<IPCryptPFX>::uninit();

        // Safety: We have a valid pointer to uninitialized memory and a valid key pointer
        unsafe {
            ipcrypt_pfx_init(inner.as_mut_ptr(), key.as_ptr());
            Self {
                inner: inner.assume_init(),
            }
        }
    }

    /// Encrypts a 16-byte IP address in place with prefix preservation.
    pub fn encrypt_ip16(&self, ip: &mut [u8; 16]) {
        // Safety: We have a valid IPCryptPFX instance and a valid mutable pointer to 16 bytes
        unsafe {
            ipcrypt_pfx_encrypt_ip16(&self.inner, ip.as_mut_ptr());
        }
    }

    /// Decrypts a 16-byte IP address in place with prefix preservation.
    pub fn decrypt_ip16(&self, ip: &mut [u8; 16]) {
        // Safety: We have a valid IPCryptPFX instance and a valid mutable pointer to 16 bytes
        unsafe {
            ipcrypt_pfx_decrypt_ip16(&self.inner, ip.as_mut_ptr());
        }
    }

    /// Encrypts an IP address string (IPv4 or IPv6) with prefix preservation.
    ///
    /// On success, returns the encrypted IP string.
    pub fn encrypt_ip_str(&self, ip: &str) -> Result<String, IpcryptError> {
        let c_ip = CString::new(ip).map_err(|_| IpcryptError::NullByteInInput)?;
        let mut buffer = [0u8; MAX_IP_STR_BYTES];

        // Safety: We have valid pointers to initialized memory and a valid C string
        let ret = unsafe {
            ipcrypt_pfx_encrypt_ip_str(
                &self.inner,
                buffer.as_mut_ptr() as *mut c_char,
                c_ip.as_ptr(),
            )
        };

        if ret == 0 {
            return Err(IpcryptError::OperationFailed);
        }

        // Safety: The buffer is null-terminated and contains valid UTF-8
        unsafe {
            CStr::from_ptr(buffer.as_ptr() as *const c_char)
                .to_str()
                .map(|s| s.to_owned())
                .map_err(Into::into)
        }
    }

    /// Decrypts an encrypted IP address string with prefix preservation.
    ///
    /// On success, returns the decrypted IP string.
    pub fn decrypt_ip_str(&self, encrypted: &str) -> Result<String, IpcryptError> {
        let c_encrypted = CString::new(encrypted).map_err(|_| IpcryptError::NullByteInInput)?;
        let mut buffer = [0u8; MAX_IP_STR_BYTES];
        let ret = unsafe {
            ipcrypt_pfx_decrypt_ip_str(
                &self.inner,
                buffer.as_mut_ptr() as *mut c_char,
                c_encrypted.as_ptr(),
            )
        };
        if ret == 0 {
            return Err(IpcryptError::OperationFailed);
        }
        unsafe {
            CStr::from_ptr(buffer.as_ptr() as *const c_char)
                .to_str()
                .map(|s| s.to_owned())
                .map_err(Into::into)
        }
    }

    /// Encrypts an IP address and returns the result as a new IP address.
    ///
    /// # Arguments
    ///
    /// * `ip` - The IP address to encrypt
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::IpcryptPfx;
    /// use std::net::IpAddr;
    ///
    /// let ipcrypt = IpcryptPfx::new([0u8; 32]);
    /// let ip = "192.168.1.1".parse::<IpAddr>().unwrap();
    /// let encrypted = ipcrypt.encrypt_ipaddr(ip).unwrap();
    /// ```
    pub fn encrypt_ipaddr(&self, ip: IpAddr) -> Result<IpAddr, IpcryptError> {
        let mut ip16 = ipaddr_to_ip16(ip);
        self.encrypt_ip16(&mut ip16);
        ip16_to_ipaddr(ip16)
    }

    /// Decrypts an encrypted IP address and returns the result as a new IP address.
    ///
    /// # Arguments
    ///
    /// * `encrypted` - The encrypted IP address to decrypt
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::IpcryptPfx;
    /// use std::net::IpAddr;
    ///
    /// let ipcrypt = IpcryptPfx::new([0u8; 32]);
    /// let ip = "192.168.1.1".parse::<IpAddr>().unwrap();
    /// let encrypted = ipcrypt.encrypt_ipaddr(ip).unwrap();
    /// let decrypted = ipcrypt.decrypt_ipaddr(encrypted).unwrap();
    /// assert_eq!(ip, decrypted);
    /// ```
    pub fn decrypt_ipaddr(&self, encrypted: IpAddr) -> Result<IpAddr, IpcryptError> {
        let mut ip16 = ipaddr_to_ip16(encrypted);
        self.decrypt_ip16(&mut ip16);
        ip16_to_ipaddr(ip16)
    }

    /// Creates a new IpcryptPfx instance with a randomly generated key.
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::IpcryptPfx;
    ///
    /// let ipcrypt = IpcryptPfx::new_random();
    /// ```
    pub fn new_random() -> Self {
        Self::new(Self::generate_key())
    }

    /// Encrypts an IP address string and returns the result as a new string.
    /// This is a convenience method that handles both IPv4 and IPv6 addresses.
    ///
    /// # Arguments
    ///
    /// * `ip` - The IP address string to encrypt (IPv4 or IPv6)
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::IpcryptPfx;
    ///
    /// let ipcrypt = IpcryptPfx::new_random();
    /// let encrypted = ipcrypt.encrypt("192.168.1.1").unwrap();
    /// let decrypted = ipcrypt.decrypt(&encrypted).unwrap();
    /// assert_eq!("192.168.1.1", decrypted);
    /// ```
    pub fn encrypt(&self, ip: &str) -> Result<String, IpcryptError> {
        self.encrypt_ip_str(ip)
    }

    /// Decrypts an encrypted IP address string.
    /// This is a convenience method that handles both IPv4 and IPv6 addresses.
    ///
    /// # Arguments
    ///
    /// * `encrypted` - The encrypted IP address string to decrypt
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::IpcryptPfx;
    ///
    /// let ipcrypt = IpcryptPfx::new_random();
    /// let encrypted = ipcrypt.encrypt("192.168.1.1").unwrap();
    /// let decrypted = ipcrypt.decrypt(&encrypted).unwrap();
    /// assert_eq!("192.168.1.1", decrypted);
    /// ```
    pub fn decrypt(&self, encrypted: &str) -> Result<String, IpcryptError> {
        self.decrypt_ip_str(encrypted)
    }

    /// Converts an IP address string to its 16-byte representation.
    /// This is a convenience method that handles both IPv4 and IPv6 addresses.
    ///
    /// # Arguments
    ///
    /// * `ip` - The IP address string to convert
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::IpcryptPfx;
    ///
    /// let ip16 = IpcryptPfx::to_bytes("192.168.1.1").unwrap();
    /// let ip_str = IpcryptPfx::from_bytes(&ip16).unwrap();
    /// assert_eq!("192.168.1.1", ip_str);
    /// ```
    pub fn to_bytes(ip: &str) -> Result<[u8; 16], IpcryptError> {
        Ipcrypt::str_to_ip16(ip)
    }

    /// Converts a 16-byte IP address representation to a string.
    /// This is a convenience method that handles both IPv4 and IPv6 addresses.
    ///
    /// # Arguments
    ///
    /// * `ip16` - The 16-byte IP address to convert
    ///
    /// # Examples
    ///
    /// ```
    /// use ipcrypt2::IpcryptPfx;
    ///
    /// let ip16 = IpcryptPfx::to_bytes("192.168.1.1").unwrap();
    /// let ip_str = IpcryptPfx::from_bytes(&ip16).unwrap();
    /// assert_eq!("192.168.1.1", ip_str);
    /// ```
    pub fn from_bytes(ip16: &[u8; 16]) -> Result<String, IpcryptError> {
        Ipcrypt::ip16_to_str(ip16)
    }
}

impl Drop for IpcryptPfx {
    fn drop(&mut self) {
        unsafe {
            ipcrypt_pfx_deinit(&mut self.inner);
        }
    }
}

/// Converts an IP address string (IPv4 or IPv6) to a 16-byte binary representation.
///
/// Returns the binary representation as a 16-byte array on success.
pub fn str_to_ip16(ip: &str) -> Result<[u8; 16], IpcryptError> {
    let c_ip = CString::new(ip).map_err(|_| IpcryptError::NullByteInInput)?;
    let mut ip16 = [0u8; 16];
    let ret = unsafe { ipcrypt_str_to_ip16(ip16.as_mut_ptr(), c_ip.as_ptr()) };
    if ret != 0 {
        Err(IpcryptError::OperationFailed)
    } else {
        Ok(ip16)
    }
}

/// The maximum number of bytes in the encrypted IP string.
pub const MAX_IP_STR_BYTES: usize = 46;

/// Converts a 16-byte binary IP address into a string.
///
/// Returns the IP string on success.
pub fn ip16_to_str(ip16: &[u8; 16]) -> Result<String, IpcryptError> {
    let mut buffer = [0u8; MAX_IP_STR_BYTES];
    let ret = unsafe { ipcrypt_ip16_to_str(buffer.as_mut_ptr() as *mut c_char, ip16.as_ptr()) };
    if ret == 0 {
        return Err(IpcryptError::OperationFailed);
    }
    unsafe {
        CStr::from_ptr(buffer.as_ptr() as *const c_char)
            .to_str()
            .map(|s| s.to_owned())
            .map_err(Into::into)
    }
}

/// Converts a `std::net::IpAddr` into a 16-byte representation.
///
/// IPv4 addresses are converted to the IPv4‑mapped IPv6 format.
pub fn ipaddr_to_ip16(ip: IpAddr) -> [u8; 16] {
    match ip {
        IpAddr::V4(v4) => v4.to_ipv6_mapped().octets(),
        IpAddr::V6(v6) => v6.octets(),
    }
}

/// Converts a 16-byte representation to a `std::net::IpAddr`.
///
/// If the 16-byte value is an IPv4-mapped IPv6 address, it returns an `IpAddr::V4`.
pub fn ip16_to_ipaddr(ip16: [u8; 16]) -> Result<IpAddr, IpcryptError> {
    // Check for IPv4-mapped IPv6 address.
    if ip16[0..10] == [0u8; 10] && ip16[10] == 0xff && ip16[11] == 0xff {
        let octets = [ip16[12], ip16[13], ip16[14], ip16[15]];
        Ok(IpAddr::V4(Ipv4Addr::from(octets)))
    } else {
        Ok(IpAddr::V6(Ipv6Addr::from(ip16)))
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};

    #[test]
    fn test_ip16_encrypt_decrypt() {
        let key = [0u8; Ipcrypt::KEY_BYTES];
        let ipcrypt = Ipcrypt::new(key);
        let mut ip = [192, 168, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
        let original = ip;
        ipcrypt.encrypt_ip16(&mut ip);
        assert_ne!(ip, original);
        ipcrypt.decrypt_ip16(&mut ip);
        assert_eq!(ip, original);
    }

    #[test]
    fn test_ip_str_encrypt_decrypt() {
        let key = [0u8; Ipcrypt::KEY_BYTES];
        let ipcrypt = Ipcrypt::new(key);
        let ip = "192.168.1.1";
        let encrypted = ipcrypt.encrypt_ip_str(ip).expect("Encryption failed");
        let decrypted = ipcrypt
            .decrypt_ip_str(&encrypted)
            .expect("Decryption failed");
        assert_eq!(ip, decrypted);
    }

    #[test]
    fn test_nd_ip16_encrypt_decrypt() {
        let key = [0u8; Ipcrypt::KEY_BYTES];
        let ipcrypt = Ipcrypt::new(key);
        let ip: [u8; 16] = [10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
        let nd_encrypted = ipcrypt.nd_encrypt_ip16(&ip);
        let decrypted = ipcrypt.nd_decrypt_ip16(&nd_encrypted);
        assert_eq!(ip, decrypted);
    }

    #[test]
    fn test_nd_ip_str_encrypt_decrypt() {
        let key = [0u8; Ipcrypt::KEY_BYTES];
        let ipcrypt = Ipcrypt::new(key);
        let ip = "10.0.0.1";
        let nd_encrypted = ipcrypt.nd_encrypt_ip_str(ip).expect("ND Encryption failed");
        let nd_decrypted = ipcrypt
            .nd_decrypt_ip_str(&nd_encrypted)
            .expect("ND Decryption failed");
        assert_eq!(ip, nd_decrypted);
    }

    #[test]
    fn test_str_to_ip16_and_back() {
        let ip_str = "192.168.1.1";
        let ip16 = Ipcrypt::str_to_ip16(ip_str).expect("Conversion to ip16 failed");
        let ip_str_converted = Ipcrypt::ip16_to_str(&ip16).expect("Conversion to string failed");
        assert_eq!(ip_str, ip_str_converted);
    }

    #[test]
    fn test_encrypt_decrypt_ipaddr() {
        let key = [0u8; Ipcrypt::KEY_BYTES];
        let ipcrypt = Ipcrypt::new(key);

        // Test IPv4
        let ip_v4 = IpAddr::V4(Ipv4Addr::new(192, 168, 1, 1));
        let encrypted_v4 = ipcrypt.encrypt_ipaddr(ip_v4).expect("Encryption failed");
        let decrypted_v4 = ipcrypt
            .decrypt_ipaddr(encrypted_v4)
            .expect("Decryption failed");
        assert_eq!(ip_v4, decrypted_v4);

        // Test IPv6
        let ip_v6 = IpAddr::V6(Ipv6Addr::LOCALHOST);
        let encrypted_v6 = ipcrypt.encrypt_ipaddr(ip_v6).expect("Encryption failed");
        let decrypted_v6 = ipcrypt
            .decrypt_ipaddr(encrypted_v6)
            .expect("Decryption failed");
        assert_eq!(ip_v6, decrypted_v6);
    }

    #[test]
    fn test_nd_encrypt_decrypt_ipaddr() {
        let key = [0u8; Ipcrypt::KEY_BYTES];
        let ipcrypt = Ipcrypt::new(key);

        // Test IPv4
        let ip_v4 = IpAddr::V4(Ipv4Addr::new(10, 0, 0, 1));
        let encrypted_v4 = ipcrypt
            .nd_encrypt_ipaddr(ip_v4)
            .expect("ND Encryption failed");
        let decrypted_v4 = ipcrypt
            .nd_decrypt_ipaddr(encrypted_v4)
            .expect("ND Decryption failed");
        assert_eq!(ip_v4, decrypted_v4);

        // Test IPv6
        let ip_v6 = IpAddr::V6(Ipv6Addr::LOCALHOST);
        let encrypted_v6 = ipcrypt
            .nd_encrypt_ipaddr(ip_v6)
            .expect("ND Encryption failed");
        let decrypted_v6 = ipcrypt
            .nd_decrypt_ipaddr(encrypted_v6)
            .expect("ND Decryption failed");
        assert_eq!(ip_v6, decrypted_v6);
    }

    #[test]
    fn test_nd_ipaddr_str_encrypt_decrypt() {
        let key = [0u8; Ipcrypt::KEY_BYTES];
        let ipcrypt = Ipcrypt::new(key);
        let ip = IpAddr::V4(Ipv4Addr::new(10, 0, 0, 1));
        let nd_encrypted = ipcrypt
            .nd_encrypt_ipaddr_str(ip)
            .expect("ND Encryption failed");
        let nd_decrypted = ipcrypt
            .nd_decrypt_ipaddr_str(&nd_encrypted)
            .expect("ND Decryption failed");
        assert_eq!(ip, nd_decrypted);
    }

    #[test]
    fn test_nxd_encrypt_decrypt_ipaddr() {
        let key = [0u8; IpcryptNdx::KEY_BYTES];
        let ipcrypt = IpcryptNdx::new(key);

        // Test IPv4
        let ip_v4 = IpAddr::V4(Ipv4Addr::new(10, 0, 0, 1));
        let encrypted_v4 = ipcrypt
            .nd_encrypt_ipaddr(ip_v4)
            .expect("NDX Encryption failed");
        let decrypted_v4 = ipcrypt
            .nd_decrypt_ipaddr(encrypted_v4)
            .expect("NDX Decryption failed");
        assert_eq!(ip_v4, decrypted_v4);

        // Test IPv6
        let ip_v6 = IpAddr::V6(Ipv6Addr::LOCALHOST);
        let encrypted_v6 = ipcrypt
            .nd_encrypt_ipaddr(ip_v6)
            .expect("NDX Encryption failed");
        let decrypted_v6 = ipcrypt
            .nd_decrypt_ipaddr(encrypted_v6)
            .expect("NDX Decryption failed");
        assert_eq!(ip_v6, decrypted_v6);
    }

    #[test]
    fn test_ndx_ipaddr_str_encrypt_decrypt() {
        let key = [0u8; IpcryptNdx::KEY_BYTES];
        let ipcrypt = IpcryptNdx::new(key);
        let ip = IpAddr::V4(Ipv4Addr::new(10, 0, 0, 1));
        let nd_encrypted = ipcrypt
            .nd_encrypt_ipaddr_str(ip)
            .expect("NDX Encryption failed");
        let nd_decrypted = ipcrypt
            .nd_decrypt_ipaddr_str(&nd_encrypted)
            .expect("NDX Decryption failed");
        assert_eq!(ip, nd_decrypted);
    }

    // --- PFX tests ---

    #[test]
    fn test_pfx_ip16_encrypt_decrypt() {
        let key = IpcryptPfx::generate_key();
        let ipcrypt = IpcryptPfx::new(key);
        let mut ip = [192, 168, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
        let original = ip;
        ipcrypt.encrypt_ip16(&mut ip);
        assert_ne!(ip, original);
        ipcrypt.decrypt_ip16(&mut ip);
        assert_eq!(ip, original);
    }

    #[test]
    fn test_pfx_ip_str_encrypt_decrypt() {
        let key = IpcryptPfx::generate_key();
        let ipcrypt = IpcryptPfx::new(key);
        let ip = "192.168.1.1";
        let encrypted = ipcrypt.encrypt_ip_str(ip).expect("PFX Encryption failed");
        let decrypted = ipcrypt
            .decrypt_ip_str(&encrypted)
            .expect("PFX Decryption failed");
        assert_eq!(ip, decrypted);
    }

    #[test]
    fn test_pfx_encrypt_decrypt_ipaddr() {
        let key = IpcryptPfx::generate_key();
        let ipcrypt = IpcryptPfx::new(key);

        // Test IPv4
        let ip_v4 = IpAddr::V4(Ipv4Addr::new(192, 168, 1, 1));
        let encrypted_v4 = ipcrypt
            .encrypt_ipaddr(ip_v4)
            .expect("PFX Encryption failed");
        let decrypted_v4 = ipcrypt
            .decrypt_ipaddr(encrypted_v4)
            .expect("PFX Decryption failed");
        assert_eq!(ip_v4, decrypted_v4);

        // Test IPv6
        let ip_v6 = IpAddr::V6(Ipv6Addr::LOCALHOST);
        let encrypted_v6 = ipcrypt
            .encrypt_ipaddr(ip_v6)
            .expect("PFX Encryption failed");
        let decrypted_v6 = ipcrypt
            .decrypt_ipaddr(encrypted_v6)
            .expect("PFX Decryption failed");
        assert_eq!(ip_v6, decrypted_v6);
    }

    #[test]
    fn test_pfx_convenience_methods() {
        let ipcrypt = IpcryptPfx::new_random();
        let ip = "10.0.0.1";

        // Test encrypt/decrypt convenience methods
        let encrypted = ipcrypt.encrypt(ip).expect("Encryption failed");
        let decrypted = ipcrypt.decrypt(&encrypted).expect("Decryption failed");
        assert_eq!(ip, decrypted);

        // Test to_bytes/from_bytes convenience methods
        let ip16 = IpcryptPfx::to_bytes(ip).expect("to_bytes failed");
        let ip_str = IpcryptPfx::from_bytes(&ip16).expect("from_bytes failed");
        assert_eq!(ip, ip_str);
    }

    #[test]
    fn test_pfx_prefix_preservation() {
        let key = IpcryptPfx::generate_key();
        let ipcrypt = IpcryptPfx::new(key);

        // Test that IPs with same prefix produce encrypted IPs with same prefix
        let ip1 = "192.168.1.1";
        let ip2 = "192.168.1.2";

        let encrypted1 = ipcrypt.encrypt_ip_str(ip1).unwrap();
        let encrypted2 = ipcrypt.encrypt_ip_str(ip2).unwrap();

        // encrypted1 and encrypted2 should share the same prefix
        // For IPv4 addresses, the first two octets should be the same
        assert_eq!(&encrypted1[..7], &encrypted2[..7]); // "192.168"
    }
}