devolutions-crypto 0.10.0

An abstraction layer for the cryptography used by Devolutions
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
namespace Devolutions.Cryptography
{
    using System;
    using System.Runtime.InteropServices;

    using Devolutions.Cryptography.Argon2;
    using Devolutions.Cryptography.Signature;

    /// <summary>
    /// Devolutions Crypto exposed API.
    /// </summary>
    public static class Managed
    {
#if RDM
        [System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.NamingRules", "SA1310:Field names should not contain underscore", Justification =
 "Preprocessor directive")]
        private const CipherTextVersion CIPHERTEXT_VERSION = CipherTextVersion.V1;
#else
        [System.Diagnostics.CodeAnalysis.SuppressMessage(
            "StyleCop.CSharp.NamingRules",
            "SA1310:Field names should not contain underscore",
            Justification = "Preprocessor directive")]
        private const CipherTextVersion CIPHERTEXT_VERSION = CipherTextVersion.Latest;
#endif

        [System.Diagnostics.CodeAnalysis.SuppressMessage(
            "StyleCop.CSharp.NamingRules",
            "SA1310:Field names should not contain underscore",
            Justification = "Preprocessor directive")]
        private const SignatureVersion SIGNATURE_VERSION = SignatureVersion.Latest;

        public const uint DEFAULT_PBKDF2_ITERATIONS = 600000;

        /// <summary>
        /// Performs a key exchange.
        /// </summary>
        /// <param name="privateKey">The private key to mix.</param>
        /// <param name="publicKey">The public key.</param>
        /// <returns>Returns the resulting shared key.</returns>
        public static byte[] MixKeyExchange(byte[]? privateKey, byte[]? publicKey)
        {
            if (publicKey == null || privateKey == null)
            {
                throw new DevolutionsCryptoException(ManagedError.InvalidParameter);
            }

            long sharedKeySize = Native.MixKeyExchangeSizeNative();

            if (sharedKeySize < 0)
            {
                Utils.HandleError(sharedKeySize);
            }

            byte[] shared = new byte[sharedKeySize];

            long res = Native.MixKeyExchangeNative(privateKey, (UIntPtr)privateKey.Length, publicKey, (UIntPtr)publicKey.Length, shared, (UIntPtr)shared.Length);

            if (res < 0)
            {
                Utils.HandleError(res);
            }

            return shared;
        }

        /// <summary>
        /// Get the default argon2 parameters.
        /// </summary>
        /// <returns>Returns the default argon2 parameters.</returns>
        public static Argon2Parameters GetDefaultArgon2Parameters()
        {
            long size = Native.GetDefaultArgon2ParametersSizeNative();

            if (size < 0)
            {
                Utils.HandleError(size);
            }

            byte[] rawParameters = new byte[size];

            long res = Native.GetDefaultArgon2ParametersNative(rawParameters, (UIntPtr)size);

            if (res < 0)
            {
                Utils.HandleError(res);
            }

            Argon2Parameters? parameters = Argon2Parameters.FromByteArray(rawParameters);

            if (parameters == null)
            {
                // This should never happen, we should always be able to deserialize the default parameters.
                throw new DevolutionsCryptoException(ManagedError.Error);
            }

            return parameters;
        }

        /// <summary>
        /// Build serialized <see cref="DerivationParameters"/> from the given <see cref="Argon2Parameters"/>
        /// without performing any key derivation.
        /// </summary>
        /// <param name="parameters">
        /// The Argon2 parameters to use. Defaults to <see cref="GetDefaultArgon2Parameters"/> when <c>null</c>.
        /// </param>
        /// <returns>Serialized <see cref="DerivationParameters"/> bytes suitable for use with <see cref="HashPasswordWithParams"/>.</returns>
        public static byte[] GetArgon2DerivationParameters(Argon2Parameters? parameters = null)
        {
            Argon2Parameters argon2Params = parameters ?? GetDefaultArgon2Parameters();
            byte[] rawParams = argon2Params.ToByteArray();

            long size = Native.GetArgon2DerivationParametersSizeNative((UIntPtr)rawParams.Length);

            if (size < 0)
            {
                Utils.HandleError(size);
            }

            byte[] result = new byte[size];
            long res = Native.GetArgon2DerivationParametersNative(rawParams, (UIntPtr)rawParams.Length, result, (UIntPtr)result.Length);

            if (res < 0)
            {
                Utils.HandleError(res);
            }

            return result;
        }

        /// <summary>
        /// Build serialized <see cref="DerivationParameters"/> for PBKDF2 with the given iteration count,
        /// without performing any key derivation.
        /// </summary>
        /// <param name="iterations">Number of PBKDF2 iterations. Defaults to 600,000.</param>
        /// <returns>Serialized <see cref="DerivationParameters"/> bytes suitable for use with <see cref="HashPasswordWithParams"/>.</returns>
        public static byte[] GetPbkdf2DerivationParameters(uint iterations = DEFAULT_PBKDF2_ITERATIONS)
        {
            long size = Native.GetPbkdf2DerivationParametersSizeNative();

            if (size < 0)
            {
                Utils.HandleError(size);
            }

            byte[] result = new byte[size];
            long res = Native.GetPbkdf2DerivationParametersNative(iterations, result, (UIntPtr)result.Length);

            if (res < 0)
            {
                Utils.HandleError(res);
            }

            return result;
        }

        /// <summary>
        /// Encrypts the data (which will be encoded into a UTF8 byte array) with the provided key.
        /// </summary>
        /// <param name="data">The data to encrypt.</param>
        /// <param name="key">The key to use for encryption.</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <param name="version">The cipher version to use. (Latest is recommended).</param>
        /// <returns>Returns the encryption result as a base 64 encoded string.</returns>
        public static string? EncryptWithKeyAsBase64String(string data, byte[] key, byte[]? aad = null, CipherTextVersion version = CIPHERTEXT_VERSION)
        {
            byte[]? cipher = Encrypt(Utils.StringToUtf8ByteArray(data), key, aad, version);

            return Utils.EncodeToBase64String(cipher);
        }

        /// <summary>
        /// Encrypts the data (which will be encoded into a UTF8 byte array) with the provided key.
        /// </summary>
        /// <param name="data">The data to encrypt.</param>
        /// <param name="key">The key to use for encryption.</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <param name="version">The cipher version to use. (Latest is recommended).</param>
        /// <returns>Returns the encryption result as a byte array.</returns>
        public static byte[]? EncryptWithKey(string data, byte[] key, byte[]? aad = null, CipherTextVersion version = CIPHERTEXT_VERSION)
        {
            byte[]? cipher = Encrypt(Utils.StringToUtf8ByteArray(data), key, aad, version);

            return cipher;
        }

        /// <summary>
        /// Derives the password using Argon2.
        /// </summary>
        /// <param name="key">The password to derive.</param>
        /// <param name="parameters">The argon2 parameters used for the derivation.</param>
        /// <returns>Returns the derived password.</returns>
        public static byte[] DeriveKey(byte[] key, Argon2Parameters parameters)
        {
            return DeriveKeyArgon2(key, parameters);
        }

        /// <summary>
        /// Derives the password using Argon2.
        /// </summary>
        /// <param name="key">The password to derive.</param>
        /// <param name="parameters">The argon2 parameters used for the derivation.</param>
        /// <returns>Returns the derived password.</returns>
        public static byte[] DeriveKeyArgon2(byte[] key, Argon2Parameters parameters)
        {
            if (key == null || key.Length == 0 || parameters == null || parameters.Length == 0)
            {
                throw new DevolutionsCryptoException(ManagedError.InvalidParameter);
            }

            byte[] result = new byte[parameters.Length];
            byte[] parametersRaw = parameters.ToByteArray();

            long res = Native.DeriveKeyArgon2Native(key, (UIntPtr)key.Length, parametersRaw, (UIntPtr)parametersRaw.Length, result, (UIntPtr)result.Length);

            if (res < 0)
            {
                Utils.HandleError(res);
            }

            return result;
        }

        /// <summary>
        /// Derives the password using PBKDF2.
        /// </summary>
        /// <param name="key">The password to derive.</param>
        /// <param name="salt">The salt. (Optional).</param>
        /// <param name="iterations">The number of iterations (defaults to 600000).</param>
        /// <param name="length">The resulting key length.</param>
        /// <returns>Returns the derived password.</returns>
        public static byte[] DeriveKey(byte[] key, byte[]? salt = null, uint iterations = DEFAULT_PBKDF2_ITERATIONS, uint length = 32)
        {
            return DeriveKeyPbkdf2(key, salt, iterations, length);
        }

        /// <summary>
        /// Derives the password using PBKDF2.
        /// </summary>
        /// <param name="key">The password to derive.</param>
        /// <param name="salt">The salt. (Optional).</param>
        /// <param name="iterations">The number of iterations. (defaults to 600000).</param>
        /// <param name="length">The resulting key length.</param>
        /// <returns>Returns the derived password.</returns>
        public static byte[] DeriveKeyPbkdf2(byte[] key, byte[]? salt = null, uint iterations = DEFAULT_PBKDF2_ITERATIONS, uint length = 32)
        {
            if (key == null || key.Length == 0)
            {
                throw new DevolutionsCryptoException(ManagedError.InvalidParameter);
            }

            byte[] result = new byte[length];

            int saltLength = salt?.Length ?? 0;

            long res = Native.DeriveKeyPbkdf2Native(key, (UIntPtr)key.Length, salt, (UIntPtr)saltLength, iterations, result, (UIntPtr)result.Length);

            if (res < 0)
            {
                Utils.HandleError(res);
            }

            return result;
        }

        /// <summary>
        /// Derives the password string (which will be encoded into a UTF8 byte array) using PBKDF2.
        /// </summary>
        /// <param name="password">The password to derive.</param>
        /// <param name="salt">The salt. (Optional).</param>
        /// <param name="iterations">The number of iterations (defaults to 600,000).</param>
        /// <param name="length">The resulting key length.</param>
        /// <returns>Returns the derived password.</returns>
        public static byte[] DerivePassword(string password, byte[]? salt = null, uint iterations = DEFAULT_PBKDF2_ITERATIONS, uint length = 32)
        {
            return DeriveKey(Utils.StringToUtf8ByteArray(password), salt, iterations, length);
        }

        /// <summary>
        /// Derives a password with the parameters provided.
        /// </summary>
        /// <param name="password">The data to decrypt.</param>
        /// <param name="salt">The salt. (Optional).</param>
        /// <param name="iterations">The amount of iterations (defaults to 600,000).</param>
        /// <returns>Returns the decryption result in a byte array.</returns>
        public static byte[] DerivePassword(string password, string? salt, uint iterations = DEFAULT_PBKDF2_ITERATIONS)
        {
            return DeriveKey(Utils.StringToUtf8ByteArray(password), Utils.StringToUtf8ByteArray(salt), iterations);
        }

        /// <summary>
        /// Derives a password using PBKDF2 and returns the structured <see cref="SecretKey"/> and <see cref="DerivationParameters"/>.
        /// </summary>
        /// <param name="key">The password or key material to derive.</param>
        /// <param name="iterations">The number of PBKDF2 iterations (defaults to 600,000).</param>
        /// <returns>Returns a <see cref="KeyDerivationResult"/> containing the derived key and the parameters needed to reproduce it.</returns>
        public static KeyDerivationResult DeriveSecretKeyPbkdf2(byte[] key, uint iterations = DEFAULT_PBKDF2_ITERATIONS)
        {
            if (key == null || key.Length == 0)
            {
                throw new DevolutionsCryptoException(ManagedError.InvalidParameter);
            }

            long skSize = Native.GenerateSecretKeySizeNative();
            long paramsSize = Native.DeriveSecretKeyPbkdf2SizeNative();

            if (skSize < 0)
            {
                Utils.HandleError(skSize);
            }

            if (paramsSize < 0)
            {
                Utils.HandleError(paramsSize);
            }

            byte[] skBuf = new byte[skSize];
            byte[] paramsBuf = new byte[paramsSize];

            long res = Native.DeriveSecretKeyPbkdf2Native(key, (UIntPtr)key.Length, iterations, skBuf, (UIntPtr)skBuf.Length, paramsBuf, (UIntPtr)paramsBuf.Length);

            if (res < 0)
            {
                Utils.HandleError(res);
            }

            return new KeyDerivationResult(SecretKey.FromByteArray(skBuf), DerivationParameters.FromByteArray(paramsBuf));
        }

        /// <summary>
        /// Derives a password using Argon2 and returns the structured <see cref="SecretKey"/> and <see cref="DerivationParameters"/>.
        /// </summary>
        /// <param name="key">The password or key material to derive.</param>
        /// <param name="parameters">The Argon2 parameters to use for derivation.</param>
        /// <returns>Returns a <see cref="KeyDerivationResult"/> containing the derived key and the parameters needed to reproduce it.</returns>
        public static KeyDerivationResult DeriveSecretKeyArgon2(byte[] key, Argon2Parameters parameters)
        {
            if (key == null || key.Length == 0 || parameters == null)
            {
                throw new DevolutionsCryptoException(ManagedError.InvalidParameter);
            }

            byte[] parametersRaw = parameters.ToByteArray();

            long skSize = Native.GenerateSecretKeySizeNative();
            long paramsSize = Native.DeriveSecretKeyArgon2ParametersSizeNative((UIntPtr)parametersRaw.Length);

            if (skSize < 0)
            {
                Utils.HandleError(skSize);
            }

            if (paramsSize < 0)
            {
                Utils.HandleError(paramsSize);
            }

            byte[] skBuf = new byte[skSize];
            byte[] paramsBuf = new byte[paramsSize];

            long res = Native.DeriveSecretKeyArgon2Native(key, (UIntPtr)key.Length, parametersRaw, (UIntPtr)parametersRaw.Length, skBuf, (UIntPtr)skBuf.Length, paramsBuf, (UIntPtr)paramsBuf.Length);

            if (res < 0)
            {
                Utils.HandleError(res);
            }

            return new KeyDerivationResult(SecretKey.FromByteArray(skBuf), DerivationParameters.FromByteArray(paramsBuf));
        }

        /// <summary>
        /// Derives a <see cref="SecretKey"/> from a password using PBKDF2-HMAC-SHA256 with a caller-supplied salt.
        /// Use this overload when you need a deterministic derivation (e.g. re-deriving the same key from stored parameters).
        /// For new derivations prefer <see cref="DeriveSecretKeyPbkdf2(byte[], uint)"/>, which generates a random salt automatically.
        /// </summary>
        /// <param name="key">The password to derive from.</param>
        /// <param name="salt">The salt to use. Must not be empty.</param>
        /// <param name="iterations">Number of PBKDF2 iterations. Defaults to 600 000.</param>
        /// <returns>Returns a <see cref="KeyDerivationResult"/> containing the derived key and the parameters needed to reproduce it.</returns>
        public static KeyDerivationResult DeriveSecretKeyPbkdf2WithSalt(byte[] key, byte[] salt, uint iterations = DEFAULT_PBKDF2_ITERATIONS)
        {
            if (key == null || key.Length == 0)
            {
                throw new DevolutionsCryptoException(ManagedError.InvalidParameter);
            }

            if (salt == null || salt.Length == 0)
            {
                throw new DevolutionsCryptoException(ManagedError.InvalidParameter);
            }

            long skSize = Native.GenerateSecretKeySizeNative();
            long paramsSize = Native.DeriveSecretKeyPbkdf2WithSaltSizeNative((UIntPtr)salt.Length);

            if (skSize < 0)
            {
                Utils.HandleError(skSize);
            }

            if (paramsSize < 0)
            {
                Utils.HandleError(paramsSize);
            }

            byte[] skBuf = new byte[skSize];
            byte[] paramsBuf = new byte[paramsSize];

            long res = Native.DeriveSecretKeyPbkdf2WithSaltNative(key, (UIntPtr)key.Length, iterations, salt, (UIntPtr)salt.Length, skBuf, (UIntPtr)skBuf.Length, paramsBuf, (UIntPtr)paramsBuf.Length);

            if (res < 0)
            {
                Utils.HandleError(res);
            }

            return new KeyDerivationResult(SecretKey.FromByteArray(skBuf), DerivationParameters.FromByteArray(paramsBuf));
        }

        /// <summary>
        /// Decrypts the data with the provided key.
        /// </summary>
        /// <param name="data">The data to decrypt.</param>
        /// <param name="key">The key to use for decryption.</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <param name="legacyDecryptor">The fallback decryptor to use if the data is not from Devolutions Crypto.</param>
        /// <returns>Returns the decryption result in a byte array.</returns>
        public static byte[]? Decrypt(byte[]? data, byte[] key, byte[]? aad = null, ILegacyDecryptor? legacyDecryptor = null)
        {
            if (data == null || data.Length == 0)
            {
                return null;
            }

            if (key == null)
            {
                throw new DevolutionsCryptoException(ManagedError.InvalidParameter);
            }

            long aadLength = aad?.Length ?? 0;

            byte[] result = new byte[data.Length];
            long res = Native.DecryptNative(data, (UIntPtr)data.Length, key, (UIntPtr)key.Length, aad, (UIntPtr)aadLength, result, (UIntPtr)result.Length);

            if (res < 0)
            {
                if (legacyDecryptor != null && Enum.IsDefined(typeof(NativeError), (int)res))
                {
                    if ((NativeError)res == NativeError.InvalidSignature)
                    {
                        return legacyDecryptor.Decrypt(data, key);
                    }
                }

                Utils.HandleError(res);
            }

            // If success it returns the real result size, so we resize.
            Array.Resize(ref result, (int)res);

            return result;
        }

        /// <summary>
        /// Decrypts the data with the provided private key.
        /// </summary>
        /// <param name="data">The data to decrypt.</param>
        /// <param name="privateKey">The private key to use for decryption.</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <returns>Returns the decryption result in a byte array.</returns>
        public static byte[]? DecryptAsymmetric(byte[]? data, byte[] privateKey, byte[]? aad = null)
        {
            if (data == null || data.Length == 0)
            {
                return null;
            }

            if (privateKey == null)
            {
                throw new DevolutionsCryptoException(ManagedError.InvalidParameter);
            }

            long aadLength = aad?.Length ?? 0;

            byte[] result = new byte[data.Length];

            long res = Native.DecryptAsymmetricNative(data, (UIntPtr)data.Length, privateKey, (UIntPtr)privateKey.Length, aad, (UIntPtr)aadLength, result, (UIntPtr)result.Length);

            if (res < 0)
            {
                Utils.HandleError(res);
            }

            // If success it returns the real result size, so we resize.
            Array.Resize(ref result, (int)res);

            return result;
        }

        /// <summary>
        /// Encrypts the data with the provided key.
        /// </summary>
        /// <param name="data">The data to encrypt.</param>
        /// <param name="key">The key to use for encryption.</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <param name="version">The cipher version to use. (Latest is recommended).</param>
        /// <returns>Returns the encryption result as a base 64 encoded string.</returns>
        public static string? EncryptWithKeyAsBase64String(byte[] data, byte[] key, byte[]? aad = null, CipherTextVersion version = CIPHERTEXT_VERSION)
        {
            byte[]? cipher = Encrypt(data, key, aad, version);

            return Utils.EncodeToBase64String(cipher);
        }

        /// <summary>
        /// Encrypts the data with the provided key.
        /// </summary>
        /// <param name="data">The data to encrypt.</param>
        /// <param name="key">The key to use for encryption.</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <param name="version">The cipher version to use. (Latest is recommended).</param>
        /// <returns>Returns the encryption result as a byte array.</returns>
        public static byte[]? EncryptWithKey(byte[] data, byte[] key, byte[]? aad = null, CipherTextVersion version = CIPHERTEXT_VERSION)
        {
            byte[]? cipher = Encrypt(data, key, aad, version);

            return cipher;
        }

        /// <summary>
        /// Encrypts the data with the provided password (which will be encoded into a UTF8 byte array and derived).
        /// </summary>
        /// <param name="data">The data to encrypt.</param>
        /// <param name="password">The password to use for encryption.</param>
        /// <param name="iterations">The number of iterations used to derive the password (defaults to 600,000).</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <param name="cipherTextVersion">The cipher version to use. (Latest is recommended).</param>
        /// <returns>Returns the encryption result as a base 64 encoded string.</returns>
        public static string? EncryptWithPasswordAsBase64String(byte[]? data, string password, uint iterations = DEFAULT_PBKDF2_ITERATIONS, byte[]? aad = null, CipherTextVersion cipherTextVersion = CIPHERTEXT_VERSION)
        {
            if (data == null || data.Length == 0)
            {
                return null;
            }

            uint keySize;
            if (cipherTextVersion == CipherTextVersion.V1 || cipherTextVersion == CipherTextVersion.V2)
            {
                keySize = 256;
            }
            else
            {
                keySize = 32;
            }

            byte[] key = DeriveKey(Utils.StringToUtf8ByteArray(password), null, iterations, keySize);

            byte[]? cipher = Encrypt(data, key, aad, cipherTextVersion);

            return Utils.EncodeToBase64String(cipher);
        }

        /// <summary>
        /// Encrypts the base 64 string (which will be decoded to the original data) with the provided password (which will be encoded into a UTF8 byte array and derived).
        /// </summary>
        /// <param name="b64data">The data to encrypt.</param>
        /// <param name="password">The password to use for encryption.</param>
        /// <param name="iterations">The number of iterations used to derive the password (defaults to 600,000).</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <param name="cipherTextVersion">The cipher version to use. (Latest is recommended).</param>
        /// <returns>Returns the encryption result as a base 64 encoded string.</returns>
        public static string? EncryptBase64WithPasswordAsString(string b64data, string password, uint iterations = DEFAULT_PBKDF2_ITERATIONS, byte[]? aad = null, CipherTextVersion cipherTextVersion = CIPHERTEXT_VERSION)
        {
            return EncryptBase64WithPasswordAsBase64String(b64data, password, iterations, aad, cipherTextVersion);
        }

        /// <summary>
        /// Encrypts the base 64 string (which will be decoded to the original data) with the provided password (which will be encoded into a UTF8 byte array and derived).
        /// </summary>
        /// <param name="b64data">The data to encrypt.</param>
        /// <param name="password">The password to use for encryption.</param>
        /// <param name="iterations">The number of iterations used to derive the password (defaults to 600,000).</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <param name="cipherTextVersion">The cipher version to use. (Latest is recommended).</param>
        /// <returns>Returns the encryption result as a base 64 encoded string.</returns>
        public static string? EncryptBase64WithPasswordAsBase64String(
            string b64data,
            string password,
            uint iterations = DEFAULT_PBKDF2_ITERATIONS,
            byte[]? aad = null,
            CipherTextVersion cipherTextVersion = CIPHERTEXT_VERSION)
        {
            if (string.IsNullOrEmpty(b64data))
            {
                return null;
            }

            uint keySize;
            if (cipherTextVersion == CipherTextVersion.V1 || cipherTextVersion == CipherTextVersion.V2)
            {
                keySize = 256;
            }
            else
            {
                keySize = 32;
            }

            byte[] key = DeriveKey(Utils.StringToUtf8ByteArray(password), null, iterations, keySize);

            byte[]? cipher = Encrypt(Utils.Base64StringToByteArray(b64data), key, aad, cipherTextVersion);

            return Utils.EncodeToBase64String(cipher);
        }

        /// <summary>
        /// Generates a random key.
        /// </summary>
        /// <param name="keySize">The length of the key desired.</param>
        /// <returns>Returns a random key.</returns>
        public static byte[] GenerateKey(uint keySize)
        {
            if (keySize == 0)
            {
                throw new DevolutionsCryptoException(ManagedError.InvalidParameter);
            }

            byte[] key = new byte[keySize];
            long res = Native.GenerateKeyNative(key, (UIntPtr)keySize);

            if (res < 0)
            {
                Utils.HandleError(res);
            }

            return key;
        }

        /// <summary>
        /// Verify if the password matches the hash.
        /// </summary>
        /// <param name="password">The password in bytes.</param>
        /// <param name="hash">The hash in bytes. Must be a hash from the method HashPassword().</param>
        /// <param name="legacyHasher">The fallback hasher to use if the hash is not from Devolutions Crypto.</param>
        /// <returns>Returns true if the password matches with the hash.</returns>
        public static bool VerifyPassword(byte[] password, byte[] hash, ILegacyHasher? legacyHasher = null)
        {
            if (password == null || hash == null)
            {
                throw new DevolutionsCryptoException(ManagedError.InvalidParameter);
            }

            long res = Native.VerifyPasswordNative(password, (UIntPtr)password.Length, hash, (UIntPtr)hash.Length);

            if (res == 0)
            {
                return false;
            }

            if (res < 0)
            {
                if (legacyHasher != null && Enum.IsDefined(typeof(NativeError), (int)res))
                {
                    if ((NativeError)res == NativeError.InvalidSignature)
                    {
                        return legacyHasher.VerifyPassword(password, hash);
                    }
                }

                Utils.HandleError(res);
            }

            return true;
        }

        /// <summary>
        /// Hash a password.
        /// Use <see cref="HashPasswordWithParams"/> to supply custom <see cref="DerivationParameters"/>.
        /// </summary>
        /// <param name="password">The password to hash in bytes.</param>
        /// <returns>Returns the hashed password in bytes.</returns>
        public static byte[] HashPassword(byte[] password)
        {
            if (password == null || password.Length == 0)
            {
                throw new DevolutionsCryptoException(ManagedError.InvalidParameter);
            }

            long hashLength = Native.HashPasswordLengthNative();

            if (hashLength < 0)
            {
                Utils.HandleError(hashLength);
            }

            byte[] result = new byte[hashLength];
            long res = Native.HashPasswordNative(password, (UIntPtr)password.Length, result, (UIntPtr)result.Length);

            if (res < 0)
            {
                Utils.HandleError(res);
            }

            return result;
        }

        /// <summary>
        /// Hash a password using the supplied serialized <see cref="DerivationParameters"/>.
        /// Use <see cref="HashPassword"/> for the default Argon2id behaviour.
        /// </summary>
        /// <param name="password">The password to hash in bytes.</param>
        /// <param name="derivationParams">Serialized <see cref="DerivationParameters"/> bytes.</param>
        /// <returns>Returns the hashed password in bytes.</returns>
        public static byte[] HashPasswordWithParams(byte[] password, byte[] derivationParams)
        {
            if (password == null || password.Length == 0 || derivationParams == null || derivationParams.Length == 0)
            {
                throw new DevolutionsCryptoException(ManagedError.InvalidParameter);
            }

            long hashLength = Native.HashPasswordWithParamsLengthNative(derivationParams, (UIntPtr)derivationParams.Length);

            if (hashLength < 0)
            {
                Utils.HandleError(hashLength);
            }

            byte[] result = new byte[hashLength];
            long res = Native.HashPasswordWithParamsNative(password, (UIntPtr)password.Length, derivationParams, (UIntPtr)derivationParams.Length, result, (UIntPtr)result.Length);

            if (res < 0)
            {
                Utils.HandleError(res);
            }

            return result;
        }

        /// <summary>
        /// Generates a pair of random public and private keys.
        /// </summary>
        /// <returns>Returns the random public and private keys.</returns>
        public static KeyPair GenerateKeyPair()
        {
            long keySize = Native.GenerateKeyPairSizeNative();

            byte[] publicKey = new byte[keySize];
            byte[] privateKey = new byte[keySize];

            long res = Native.GenerateKeyPairNative(privateKey, (UIntPtr)privateKey.Length, publicKey, (UIntPtr)publicKey.Length);

            if (res < 0)
            {
                Utils.HandleError(res);
            }

            return new KeyPair()
            {
                PublicKey = publicKey,
                PrivateKey = privateKey,
            };
        }

        internal static byte[] GenerateSecretKeyBytes()
        {
            long size = Native.GenerateSecretKeySizeNative();
            byte[] result = new byte[size];

            long res = Native.GenerateSecretKeyNative(result, (UIntPtr)result.Length);

            if (res < 0)
            {
                Utils.HandleError(res);
            }

            return result;
        }

        /// <summary>
        /// Generates a random secret key for symmetric encryption.
        /// </summary>
        /// <returns>Returns the generated <see cref="SecretKey"/>.</returns>
        public static SecretKey GenerateSecretKey()
        {
            return new SecretKey(GenerateSecretKeyBytes());
        }

        /// <summary>
        /// Encrypts data using a <see cref="SecretKey"/>.
        /// </summary>
        /// <param name="data">The data to encrypt.</param>
        /// <param name="key">The <see cref="SecretKey"/> to use for encryption.</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <param name="version">The cipher version to use. (Latest is recommended).</param>
        /// <returns>Returns the encrypted data as a byte array.</returns>
        public static byte[]? Encrypt(byte[]? data, SecretKey key, byte[]? aad = null, CipherTextVersion version = CIPHERTEXT_VERSION)
        {
            return Encrypt(data, key.KeyMaterial, aad, version);
        }

        /// <summary>
        /// Decrypts data using a <see cref="SecretKey"/>.
        /// </summary>
        /// <param name="data">The data to decrypt.</param>
        /// <param name="key">The <see cref="SecretKey"/> used for encryption.</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <returns>Returns the decrypted data as a byte array.</returns>
        public static byte[]? Decrypt(byte[]? data, SecretKey key, byte[]? aad = null)
        {
            return Decrypt(data, key.KeyMaterial, aad);
        }

        /// <summary>
        /// Encrypts the data.
        /// </summary>
        /// <param name="data">The data to encrypt.</param>
        /// <param name="key">The key to use for encryption.</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <param name="version">The cipher version to use. (Latest is recommended).</param>
        /// <returns>Returns the encryption result as byte array.</returns>
        public static byte[]? Encrypt(byte[]? data, byte[] key, byte[]? aad = null, CipherTextVersion version = CIPHERTEXT_VERSION)
        {
            if (data == null || data.Length == 0)
            {
                return null;
            }

            if (key == null)
            {
                throw new DevolutionsCryptoException(ManagedError.InvalidParameter);
            }

            long resultLength = Native.EncryptSizeNative((UIntPtr)data.Length, (ushort)version);

            if (resultLength < 0)
            {
                Utils.HandleError(resultLength);
            }

            long aadLength = aad?.Length ?? 0;

            byte[] result = new byte[resultLength];
            long res = Native.EncryptNative(data, (UIntPtr)data.Length, key, (UIntPtr)key.Length, aad, (UIntPtr)aadLength, result, (UIntPtr)result.Length, (ushort)version);

            if (res < 0)
            {
                Utils.HandleError(res);
            }

            return result;
        }

        /// <summary>
        /// Sign data using a keypair to certify its authenticity.
        /// </summary>
        /// <param name="data">The data to sign.</param>
        /// <param name="keypair">The keypair to use to sign the data.</param>
        /// <param name="version">The signature version to use. (Latest is recommended).</param>
        /// <returns>Returns the signature result as byte array.</returns>
        public static byte[]? Sign(byte[]? data, SigningKeyPair keypair, SignatureVersion version = SIGNATURE_VERSION)
        {
            if (data == null || data.Length == 0)
            {
                return null;
            }

            if (keypair == null)
            {
                throw new DevolutionsCryptoException(ManagedError.InvalidParameter);
            }

            byte[] keypairNative = keypair.ToByteArray();

            byte[] result = new byte[Native.SignSize((ushort)version)];

            long resultLength = Native.Sign(data, (UIntPtr)data.Length, keypairNative, (UIntPtr)keypairNative.Length, result, (UIntPtr)result.Length, (ushort)version);

            if (resultLength < 0)
            {
                Utils.HandleError(resultLength);
            }

            return result;
        }

        /// <summary>
        /// Verify some data using a signature and the corresponding public key.
        /// </summary>
        /// <param name="data">The data to verify.</param>
        /// <param name="publicKey">The public key that was used to sign the data.</param>
        /// <param name="signature">The signature to verify.</param>
        /// <returns>Returns false if the data, the signature or the public key is invalid or true if everything is valid.</returns>
        public static bool VerifySignature(byte[]? data, SigningPublicKey publicKey, byte[] signature)
        {
            if (data == null || data.Length == 0)
            {
                return false;
            }

            if (publicKey == null || signature == null || signature.Length == 0)
            {
                throw new DevolutionsCryptoException(ManagedError.InvalidParameter);
            }

            byte[] publicKeyNative = publicKey.ToByteArray();

            long res = Native.VerifySignature(data, (UIntPtr)data.Length, publicKeyNative, (UIntPtr)publicKeyNative.Length, signature, (UIntPtr)signature.Length);

            if (res == 1)
            {
                return true;
            }

            if (res < 0)
            {
                Utils.HandleError(res);
            }

            return false;
        }

        /// <summary>
        /// Generate a key pair to sign and verify data with.
        /// </summary>
        /// <param name="version">The signature version to use. (Latest is recommended).</param>
        /// <returns>Returns a signing keypair.</returns>
        public static SigningKeyPair GenerateSigningKeyPair(SignatureVersion version = SIGNATURE_VERSION)
        {
            byte[] keypairNative = new byte[Native.GenerateSigningKeyPairSize((ushort)version)];

            long res = Native.GenerateSigningKeyPair(keypairNative, (UIntPtr)keypairNative.Length, (ushort)version);

            if (res < 0)
            {
                Utils.HandleError(res);
            }

            return SigningKeyPair.FromByteArray(keypairNative);
        }

        /// <summary>
        /// Encrypts the data using asymmetric encryption.
        /// </summary>
        /// <param name="data">The data to encrypt.</param>
        /// <param name="publicKey">The public key to use for encryption.</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <param name="version">The cipher version to use. (Latest is recommended).</param>
        /// <returns>Returns the encryption result as byte array.</returns>
        public static byte[]? EncryptAsymmetric(byte[]? data, byte[] publicKey, byte[]? aad = null, CipherTextVersion version = CIPHERTEXT_VERSION)
        {
            if (data == null || data.Length == 0)
            {
                return null;
            }

            if (publicKey == null)
            {
                throw new DevolutionsCryptoException(ManagedError.InvalidParameter);
            }

            long resultLength = Native.EncryptAsymmetricSizeNative((UIntPtr)data.Length, (ushort)version);

            if (resultLength < 0)
            {
                Utils.HandleError(resultLength);
            }

            long aadLength = aad?.Length ?? 0;

            byte[] result = new byte[resultLength];
            long res = Native.EncryptAsymmetricNative(data, (UIntPtr)data.Length, publicKey, (UIntPtr)publicKey.Length, aad, (UIntPtr)aadLength, result, (UIntPtr)result.Length, (ushort)version);

            if (res < 0)
            {
                Utils.HandleError(res);
            }

            return result;
        }

        /// <summary>
        /// Encrypts the data (which will be encoded into a UTF8 byte array) with the provided password (which will be encoded into a UTF8 byte array and derived).
        /// </summary>
        /// <param name="data">The data to encrypt.</param>
        /// <param name="password">The password to use for encryption.</param>
        /// <param name="iterations">The number of iterations used to derive the password (defaults to 600,000).</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <param name="cipherTextVersion">The cipher version to use. (Latest is recommended).</param>
        /// <returns>Returns the encryption result as a base 64 encoded string.</returns>
        public static string? EncryptWithPasswordAsBase64String(string data, string password, uint iterations = DEFAULT_PBKDF2_ITERATIONS, byte[]? aad = null, CipherTextVersion cipherTextVersion = CIPHERTEXT_VERSION)
        {
            if (string.IsNullOrEmpty(data))
            {
                return null;
            }

            uint keySize;
            if (cipherTextVersion == CipherTextVersion.V1 || cipherTextVersion == CipherTextVersion.V2)
            {
                keySize = 256;
            }
            else
            {
                keySize = 32;
            }

            byte[] key = DeriveKey(Utils.StringToUtf8ByteArray(password), null, iterations, keySize);

            byte[]? cipher = Encrypt(Utils.StringToUtf8ByteArray(data), key, aad, cipherTextVersion);

            return Utils.EncodeToBase64String(cipher);
        }

        /// <summary>
        /// Encrypts the data with the provided password (which will be encoded into a UTF8 byte array and derived).
        /// </summary>
        /// <param name="data">The data to encrypt.</param>
        /// <param name="password">The password to use for encryption.</param>
        /// <param name="iterations">The number of iterations used to derive the password (defaults to 600,000).</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <param name="cipherTextVersion">The cipher version to use. (Latest is recommended).</param>
        /// <returns>Returns the encryption result as a byte array.</returns>
        public static byte[]? EncryptWithPassword(byte[]? data, string password, uint iterations = DEFAULT_PBKDF2_ITERATIONS, byte[]? aad = null, CipherTextVersion cipherTextVersion = CIPHERTEXT_VERSION)
        {
            if (data == null || data.Length == 0)
            {
                return null;
            }

            uint keySize;
            if (cipherTextVersion == CipherTextVersion.V1 || cipherTextVersion == CipherTextVersion.V2)
            {
                keySize = 256;
            }
            else
            {
                keySize = 32;
            }

            byte[] key = DeriveKey(Utils.StringToUtf8ByteArray(password), null, iterations, keySize);

            byte[]? cipher = Encrypt(data, key, aad, cipherTextVersion);

            return cipher;
        }

        /// <summary>
        /// Encrypts the base 64 string (which will be decoded to the original data) with the provided password (which will be encoded into a UTF8 byte array and derived).
        /// </summary>
        /// <param name="b64data">The data to encrypt.</param>
        /// <param name="password">The password to use for encryption.</param>
        /// <param name="iterations">The number of iterations used to derive the password. (defaults to 600,000).</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <param name="cipherTextVersion">The cipher version to use. (Latest is recommended).</param>
        /// <returns>Returns the encryption result as a byte array.</returns>
        public static byte[]? EncryptBase64WithPassword(string? b64data, string password, uint iterations = DEFAULT_PBKDF2_ITERATIONS, byte[]? aad = null, CipherTextVersion cipherTextVersion = CIPHERTEXT_VERSION)
        {
            // sduquette 2025-11-12: Explicitly comparing b64data to null because the NotNullWhen directive used by string.IsNullOrEmpty
            // is not available in netstandard2.0.
            if (b64data == null || string.IsNullOrEmpty(b64data))
            {
                return null;
            }

            uint keySize;
            if (cipherTextVersion == CipherTextVersion.V1 || cipherTextVersion == CipherTextVersion.V2)
            {
                keySize = 256;
            }
            else
            {
                keySize = 32;
            }

            byte[] key = DeriveKey(Utils.StringToUtf8ByteArray(password), null, iterations, keySize);

            byte[]? cipher = Encrypt(Utils.Base64StringToByteArray(b64data), key, aad, cipherTextVersion);

            return cipher;
        }

        /// <summary>
        /// Encrypts the data (which will be encoded into a UTF8 byte array) with the provided password (which will be encoded into a UTF8 byte array and derived).
        /// </summary>
        /// <param name="data">The data to encrypt.</param>
        /// <param name="password">The password to use for encryption.</param>
        /// <param name="iterations">The number of iterations used to derive the password (defaults to 600,000).</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <param name="cipherTextVersion">The cipher version to use. (Latest is recommended).</param>
        /// <returns>Returns the encryption result as a byte array.</returns>
        public static byte[]? EncryptWithPassword(string data, string password, uint iterations = DEFAULT_PBKDF2_ITERATIONS, byte[]? aad = null, CipherTextVersion cipherTextVersion = CIPHERTEXT_VERSION)
        {
            if (string.IsNullOrEmpty(data))
            {
                return null;
            }

            uint keySize;
            if (cipherTextVersion == CipherTextVersion.V1 || cipherTextVersion == CipherTextVersion.V2)
            {
                keySize = 256;
            }
            else
            {
                keySize = 32;
            }

            byte[] key = DeriveKey(Utils.StringToUtf8ByteArray(password), null, iterations, keySize);

            byte[]? cipher = Encrypt(Utils.StringToUtf8ByteArray(data), key, aad, cipherTextVersion);

            return cipher;
        }

        /// <summary>
        /// Decrypts the base64 string with the provided key.
        /// </summary>
        /// <param name="b64data">The base 64 string to decrypt.</param>
        /// <param name="key">The key to use for decryption.</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <param name="legacyDecryptor">The fallback decryptor to use if the data is not from Devolutions Crypto.</param>
        /// <returns>Returns the decryption result as a UTF8 encoded string.</returns>
        public static string? DecryptWithKeyAsUtf8String(string b64data, byte[] key, byte[]? aad = null, ILegacyDecryptor? legacyDecryptor = null)
        {
            byte[]? result = Decrypt(Utils.Base64StringToByteArray(b64data), key, aad, legacyDecryptor);

            return Utils.ByteArrayToUtf8String(result);
        }

        /// <summary>
        /// Decrypts the base64 string with the provided key.
        /// </summary>
        /// <param name="b64data">The base 64 string to decrypt.</param>
        /// <param name="key">The key to use for decryption.</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <param name="legacyDecryptor">The fallback decryptor to use if the data is not from Devolutions Crypto.</param>
        /// <returns>Returns the decryption result as a byte array.</returns>
        public static byte[]? DecryptWithKey(string b64data, byte[] key, byte[]? aad = null, ILegacyDecryptor? legacyDecryptor = null)
        {
            byte[]? result = Decrypt(Utils.Base64StringToByteArray(b64data), key, aad, legacyDecryptor);

            return result;
        }

        /// <summary>
        /// Decrypts the data with the provided key.
        /// </summary>
        /// <param name="data">The data to decrypt.</param>
        /// <param name="key">The key to use for decryption.</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <param name="legacyDecryptor">The fallback decryptor to use if the data is not from Devolutions Crypto.</param>
        /// <returns>Returns the decryption result as a UTF8 encoded string.</returns>
        public static string? DecryptWithKeyAsUtf8String(byte[] data, byte[] key, byte[]? aad = null, ILegacyDecryptor? legacyDecryptor = null)
        {
            byte[]? result = Decrypt(data, key, aad, legacyDecryptor);

            return Utils.ByteArrayToUtf8String(result);
        }

        /// <summary>
        /// Decrypts the data with the provided key.
        /// </summary>
        /// <param name="data">The data to decrypt.</param>
        /// <param name="key">The key to use for decryption.</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <param name="legacyDecryptor">The fallback decryptor to use if the data is not from Devolutions Crypto.</param>
        /// <returns>Returns the decryption result as a byte array.</returns>
        public static byte[]? DecryptWithKey(byte[] data, byte[] key, byte[]? aad = null, ILegacyDecryptor? legacyDecryptor = null)
        {
            return Decrypt(data, key, aad, legacyDecryptor);
        }

        /// <summary>
        /// Decrypts the data with the provided password (which will be encoded into a UTF8 byte array and derived).
        /// </summary>
        /// <param name="data">The data to decrypt.</param>
        /// <param name="password">The password to use for decryption.</param>
        /// <param name="iterations">The number of iterations used to derive the password.</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <returns>Returns the decryption result as a UTF8 encoded string.</returns>
        public static string? DecryptWithPasswordAsUtf8String(byte[]? data, string password, uint iterations = DEFAULT_PBKDF2_ITERATIONS, byte[]? aad = null)
        {
            if (data == null || data.Length == 0)
            {
                return null;
            }

            byte[] key = DeriveKey(Utils.StringToUtf8ByteArray(password), null, iterations, 32);
            byte[]? result = Decrypt(data, key, aad);

            return Utils.ByteArrayToUtf8String(result);
        }

        /// <summary>
        /// Join multiple shares to regenerate a shared secret.
        /// </summary>
        /// <param name="shares">This is a 2-dimensional array representing the shares.</param>
        /// <returns>The output buffer with the shared secret.</returns>
        public static byte[] JoinShares(byte[][] shares)
        {
            if (!SharesLengthAreValid(shares))
            {
                throw new DevolutionsCryptoException(ManagedError.InvalidParameter);
            }

#pragma warning disable CA1062 // null-check is already done in SharesLengthAreValid
            int nbShares = shares.Length;
#pragma warning restore CA1062 // null-check is already done in SharesLengthAreValid

            int sharesLength = shares[0].Length;
            int secretLength = (int)Native.JoinSharesSizeNative((UIntPtr)sharesLength);

            byte[] secret = new byte[secretLength];

            // Get unmanaged references
            GCHandle[] handles = new GCHandle[nbShares];
            for (int i = 0; i < shares.Length; i++)
            {
                handles[i] = GCHandle.Alloc(shares[i], GCHandleType.Pinned);
            }

            IntPtr[] pointers = new IntPtr[nbShares];
            for (int i = 0; i < handles.Length; i++)
            {
                pointers[i] = handles[i].AddrOfPinnedObject();
            }

            // Call the native method
            long result = Native.JoinSharesNative((UIntPtr)nbShares, (UIntPtr)sharesLength, pointers, secret, (UIntPtr)secretLength);

            // Free the pointers
            for (int i = 0; i < handles.Length; i++)
            {
                handles[i].Free();
            }

            // Handle errors
            if (result < 0)
            {
                Utils.HandleError(result);
            }

            return secret;
        }

        /// <summary>
        /// Decrypts the base 64 data (which will be decoded to the original data) with the provided password (which will be encoded into a UTF8 byte array and derived).
        /// </summary>
        /// <param name="b64data">The data to decrypt.</param>
        /// <param name="password">The password to use for decryption.</param>
        /// <param name="iterations">The number of iterations used to derive the password.</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <returns>Returns the decryption result as a UTF8 encoded string.</returns>
        public static string? DecryptWithPasswordAsUtf8String(string? b64data, string password, uint iterations = DEFAULT_PBKDF2_ITERATIONS, byte[]? aad = null)
        {
            // sduquette 2025-11-12: Explicitly comparing b64data to null because the NotNullWhen directive used by string.IsNullOrEmpty
            // is not available in netstandard2.0.
            if (b64data == null || string.IsNullOrEmpty(b64data))
            {
                return null;
            }

            byte[] key = DeriveKey(Utils.StringToUtf8ByteArray(password), null, iterations, 32);
            byte[]? result = Decrypt(Utils.Base64StringToByteArray(b64data), key, aad);

            return Utils.ByteArrayToUtf8String(result);
        }

        /// <summary>
        /// Generate shamir shared keys.
        /// </summary>
        /// <param name="nbShares">Number of keys.</param>
        /// <param name="threshold">Number of keys required to recover the secret.</param>
        /// <param name="secretLength">The secret length.</param>
        /// <returns>An array of shared keys.</returns>
        public static byte[][] GenerateSharedKey(int nbShares, int threshold, int secretLength)
        {
            int sharesLength = (int)Native.GenerateSharedKeySizeNative((UIntPtr)secretLength);

            byte[][] shares = new byte[nbShares][];

            for (int i = 0; i < nbShares; i++)
            {
                shares[i] = new byte[sharesLength];
            }

            GCHandle[] handles = new GCHandle[nbShares];
            for (int i = 0; i < shares.Length; i++)
            {
                handles[i] = GCHandle.Alloc(shares[i], GCHandleType.Pinned);
            }

            IntPtr[] pointers = new IntPtr[nbShares];
            for (int i = 0; i < handles.Length; i++)
            {
                pointers[i] = handles[i].AddrOfPinnedObject();
            }

            long result = Native.GenerateSharedKeyNative((UIntPtr)nbShares, (UIntPtr)threshold, (UIntPtr)secretLength, pointers);
            for (int i = 0; i < handles.Length; i++)
            {
                handles[i].Free();
            }

            // Handle errors
            if (result < 0)
            {
                Utils.HandleError(result);
            }

            return shares;
        }

        /// <summary>
        /// Decrypts the data with the provided password (which will be encoded into a UTF8 byte array and derived).
        /// </summary>
        /// <param name="data">The data to decrypt.</param>
        /// <param name="password">The password to use for decryption.</param>
        /// <param name="iterations">The number of iterations used to derive the password.</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <returns>Returns the decryption result as a byte array.</returns>
        public static byte[]? DecryptWithPassword(byte[]? data, string password, uint iterations = DEFAULT_PBKDF2_ITERATIONS, byte[]? aad = null)
        {
            if (data == null || data.Length == 0)
            {
                return null;
            }

            byte[] key = DeriveKey(Utils.StringToUtf8ByteArray(password), null, iterations, 32);
            byte[]? result = Decrypt(data, key, aad);

            return result;
        }

        /// <summary>
        /// Decrypts the base 64 data (which will be decoded to the original data) with the provided password (which will be encoded into a UTF8 byte array and derived).
        /// </summary>
        /// <param name="b64data">The data to decrypt.</param>
        /// <param name="password">The password to use for decryption.</param>
        /// <param name="iterations">The number of iterations used to derive the password.</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <returns>Returns the decryption result as a byte array.</returns>
        public static byte[]? DecryptWithPassword(string b64data, string password, uint iterations = DEFAULT_PBKDF2_ITERATIONS, byte[]? aad = null)
        {
            if (string.IsNullOrEmpty(b64data))
            {
                return null;
            }

            byte[] key = DeriveKey(Utils.StringToUtf8ByteArray(password), null, iterations);
            byte[]? result = Decrypt(Utils.Base64StringToByteArray(b64data), key, aad);

            return result;
        }

        /// <summary>
        /// Decrypts the data with the provided key. No exceptions are thrown in case of failure.
        /// </summary>
        /// <param name="data">The data to decrypt.</param>
        /// <param name="key">The key to use for decryption.</param>
        /// <param name="exception">The exception if an error occurs.</param>
        /// <param name="aad">Additional authenticated data. (Optional).</param>
        /// <returns>Returns the decryption result in a byte array.</returns>
        internal static byte[]? DecryptSafe(byte[]? data, byte[]? key, out DevolutionsCryptoException? exception, byte[]? aad = null)
        {
            exception = null;

            if (data == null || data.Length == 0)
            {
                return null;
            }

            if (key == null)
            {
                exception = new DevolutionsCryptoException(ManagedError.InvalidParameter);

                return null;
            }

            long aadLength = aad?.Length ?? 0;

            byte[] result = new byte[data.Length];
            long res = Native.DecryptNative(data, (UIntPtr)data.Length, key, (UIntPtr)key.Length, aad, (UIntPtr)aadLength, result, (UIntPtr)result.Length);

            if (res < 0)
            {
                exception = Utils.GetDevolutionsCryptoException(res);
                return null;
            }

            // If success it returns the real result size, so we resize.
            Array.Resize(ref result, (int)res);

            return result;
        }

        /// <summary>
        /// Encrypts data with a key derived from a password and embeds the derivation parameters in the output blob.
        /// Defaults to Argon2id with default parameters and XChaCha20-Poly1305 encryption.
        /// </summary>
        /// <param name="data">The data to encrypt.</param>
        /// <param name="password">The password to derive the key from.</param>
        /// <param name="aad">Additional authenticated data (optional).</param>
        /// <param name="derivationParameters">Pre-built derivation parameters. Defaults to Argon2id when <c>null</c>.</param>
        /// <param name="cipherTextVersion">The ciphertext version to use. Defaults to <see cref="CipherTextVersion.Latest"/> (XChaCha20-Poly1305).</param>
        /// <returns>A self-contained blob containing the derivation parameters and the ciphertext.</returns>
        public static byte[] DeriveEncryptWithPassword(byte[] data, byte[] password, byte[]? aad = null, DerivationParameters? derivationParameters = null, CipherTextVersion cipherTextVersion = CipherTextVersion.Latest)
        {
            if (data == null || data.Length == 0 || password == null || password.Length == 0)
            {
                throw new DevolutionsCryptoException(ManagedError.InvalidParameter);
            }

            long aadLength = aad?.Length ?? 0;

            if (derivationParameters != null)
            {
                byte[] paramsRaw = derivationParameters.ToByteArray();

                long resultLength = Native.DeriveEncryptDataWithParamsSizeNative((UIntPtr)data.Length, (UIntPtr)paramsRaw.Length, (ushort)cipherTextVersion);

                if (resultLength < 0)
                {
                    Utils.HandleError(resultLength);
                }

                byte[] result = new byte[resultLength];
                long res = Native.DeriveEncryptDataWithParamsNative(
                    data, (UIntPtr)data.Length,
                    password, (UIntPtr)password.Length,
                    paramsRaw, (UIntPtr)paramsRaw.Length,
                    aad, (UIntPtr)aadLength,
                    result, (UIntPtr)result.Length,
                    (ushort)cipherTextVersion);

                if (res < 0)
                {
                    Utils.HandleError(res);
                }

                Array.Resize(ref result, (int)res);

                return result;
            }
            else
            {
                // Default: Argon2id with default parameters (key_derivation_version = 0 = Latest)
                long resultLength = Native.DeriveEncryptSizeNative((UIntPtr)data.Length, 0, (ushort)cipherTextVersion);

                if (resultLength < 0)
                {
                    Utils.HandleError(resultLength);
                }

                byte[] result = new byte[resultLength];
                long res = Native.DeriveEncryptDataNative(
                    data, (UIntPtr)data.Length,
                    password, (UIntPtr)password.Length,
                    aad, (UIntPtr)aadLength,
                    result, (UIntPtr)result.Length,
                    0,
                    (ushort)cipherTextVersion);

                if (res < 0)
                {
                    Utils.HandleError(res);
                }

                Array.Resize(ref result, (int)res);

                return result;
            }
        }

        /// <summary>
        /// Decrypts a derive-encrypt blob created by <see cref="DeriveEncryptWithPassword"/>.
        /// </summary>
        /// <param name="data">The blob to decrypt (derivation parameters + ciphertext).</param>
        /// <param name="password">The password that was used to encrypt the data.</param>
        /// <param name="aad">Additional authenticated data (optional, must match the value used during encryption).</param>
        /// <returns>The decrypted plaintext bytes, or <c>null</c> if <paramref name="data"/> is null or empty.</returns>
        public static byte[]? DeriveDecryptWithPassword(byte[]? data, byte[] password, byte[]? aad = null)
        {
            if (data == null || data.Length == 0)
            {
                return null;
            }

            if (password == null || password.Length == 0)
            {
                throw new DevolutionsCryptoException(ManagedError.InvalidParameter);
            }

            long aadLength = aad?.Length ?? 0;

            // Allocate a buffer the size of the ciphertext blob; the FFI will return the actual plaintext length.
            byte[] result = new byte[data.Length];
            long res = Native.DeriveDecryptDataNative(
                data, (UIntPtr)data.Length,
                password, (UIntPtr)password.Length,
                aad, (UIntPtr)aadLength,
                result, (UIntPtr)result.Length);

            if (res < 0)
            {
                Utils.HandleError(res);
            }

            // Trim to actual plaintext length.
            Array.Resize(ref result, (int)res);

            return result;
        }

        private static bool SharesLengthAreValid(byte[][] shares)
        {
            if (shares.Length == 0)
            {
                return false;
            }

            int len = shares[0].Length;
            bool lengthIsValid = true;

            for (int j = 1; j < shares.Length; j++)
            {
                if (shares[j].Length != len)
                {
                    lengthIsValid = false;
                    break;
                }
            }

            return lengthIsValid;
        }
    }
}