1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
use crate::*;
use parking_lot::{
    Mutex, MutexGuard, RwLock, RwLockReadGuard, RwLockWriteGuard,
};
use std::{
    borrow::{Borrow, BorrowMut},
    convert::{AsMut, AsRef},
    fmt::{Debug, Formatter},
    ops::{Deref, DerefMut},
    sync::Arc,
};

/// A concrete read-only buffer type that may or may not be mem_locked.
#[derive(Debug, Clone)]
pub struct BufRead(pub Arc<dyn AsBufRead>);

impl From<BufWrite> for BufRead {
    fn from(b: BufWrite) -> Self {
        b.to_read()
    }
}

impl<const S: usize> From<BufReadSized<S>> for BufRead {
    fn from(b: BufReadSized<S>) -> Self {
        b.to_read_unsized()
    }
}

impl<const S: usize> From<BufWriteSized<S>> for BufRead {
    fn from(b: BufWriteSized<S>) -> Self {
        b.to_read_unsized()
    }
}

impl<'a> From<&'a [u8]> for BufRead {
    fn from(b: &'a [u8]) -> Self {
        b.to_vec().into()
    }
}

impl From<Vec<u8>> for BufRead {
    fn from(b: Vec<u8>) -> Self {
        b.into_boxed_slice().into()
    }
}

impl From<Box<[u8]>> for BufRead {
    fn from(b: Box<[u8]>) -> Self {
        Self(Arc::new(b))
    }
}

impl From<Arc<[u8]>> for BufRead {
    fn from(b: Arc<[u8]>) -> Self {
        // yes, we have to double arc this to make it work...
        Self(Arc::new(b))
    }
}

impl BufRead {
    /// Construct a new BufRead that is NOT mem_locked.
    pub fn new_no_lock(content: &[u8]) -> Self {
        content.to_vec().into()
    }

    /// The length of this buffer.
    pub fn len(&self) -> usize {
        self.0.len()
    }

    /// Is this buffer empty?
    pub fn is_empty(&self) -> bool {
        self.0.is_empty()
    }

    /// Obtain read access to the underlying buffer.
    pub fn read_lock(&self) -> ReadGuard<'_> {
        self.0.read_lock()
    }

    /// Attempt to extract the inner contents of this buf without cloning.
    /// If this memory is locked or there are clones of this reference,
    /// the unwrap will fail, returning a BufRead instance.
    pub fn try_unwrap(self) -> Result<Box<[u8]>, BufRead> {
        self.0.try_unwrap()
    }
}

/// A concrete sized read-only buffer type that may or may not be mem_locked.
#[derive(Debug, Clone)]
pub struct BufReadSized<const N: usize>(pub Arc<dyn AsBufReadSized<N>>);

impl<const S: usize> From<BufWriteSized<S>> for BufReadSized<S> {
    fn from(b: BufWriteSized<S>) -> Self {
        b.to_read_sized()
    }
}

impl<const N: usize> From<[u8; N]> for BufReadSized<N> {
    fn from(b: [u8; N]) -> Self {
        Self(Arc::new(b))
    }
}

impl<const N: usize> From<Arc<[u8; N]>> for BufReadSized<N> {
    fn from(b: Arc<[u8; N]>) -> Self {
        Self(b)
    }
}

impl<'a, const N: usize> From<&'a [u8]> for BufReadSized<N> {
    fn from(b: &'a [u8]) -> Self {
        // the arrayref crate doesn't work with const generics
        // this code is just coppied / modified to work
        #[inline]
        unsafe fn as_array<const N: usize>(slice: &[u8]) -> &[u8; N] {
            &*(slice.as_ptr() as *const [_; N])
        }
        let slice = &b[0..N];
        let b = *unsafe { as_array(slice) };
        Self(Arc::new(b))
    }
}

impl<const N: usize> BufReadSized<N> {
    /// Construct a new BufReadSized that is NOT mem_locked.
    pub fn new_no_lock(content: [u8; N]) -> BufReadSized<N> {
        content.into()
    }

    /// The length of this buffer.
    pub fn len(&self) -> usize {
        self.0.len()
    }

    /// Is this buffer empty?
    pub fn is_empty(&self) -> bool {
        self.0.is_empty()
    }

    /// Obtain read access to the underlying buffer.
    pub fn read_lock(&self) -> ReadGuard<'_> {
        self.0.read_lock()
    }

    /// Obtain read access to the underlying buffer.
    pub fn read_lock_sized(&self) -> ReadGuardSized<'_, N> {
        self.0.read_lock_sized()
    }

    /// Convert to an unsized BufRead instance
    /// without cloning internal data
    /// and without changing memory locking strategy.
    pub fn to_read_unsized(&self) -> BufRead {
        self.0.clone().into_read_unsized()
    }

    /// Attempt to extract the inner contents of this buf without cloning.
    /// If this memory is locked or there are clones of this reference,
    /// the unwrap will fail, returning a BufRead instance.
    pub fn try_unwrap(self) -> Result<Box<[u8]>, BufRead> {
        self.0.try_unwrap()
    }

    /// Attempt to extract the inner contents of this buf without cloning.
    /// If this memory is locked or there are clones of this reference,
    /// the unwrap will fail, returning a BufRead instance.
    pub fn try_unwrap_sized(self) -> Result<[u8; N], BufReadSized<N>> {
        self.0.try_unwrap_sized()
    }
}

/// A concrete writable buffer type that may or may not be mem_locked.
#[derive(Debug, Clone)]
pub struct BufWrite(pub Arc<dyn AsBufWrite>);

impl<const S: usize> From<BufWriteSized<S>> for BufWrite {
    fn from(b: BufWriteSized<S>) -> Self {
        b.to_write_unsized()
    }
}

impl From<Vec<u8>> for BufWrite {
    fn from(b: Vec<u8>) -> Self {
        Self(Arc::new(RwLock::new(b)))
    }
}

impl From<Box<[u8]>> for BufWrite {
    fn from(b: Box<[u8]>) -> Self {
        Self(Arc::new(RwLock::new(b)))
    }
}

impl BufWrite {
    /// Construct a new BufWrite that is NOT mem_locked.
    pub fn new_no_lock(size: usize) -> Self {
        vec![0; size].into_boxed_slice().into()
    }

    /// Construct a new BufWrite that IS mem_locked.
    /// Use this for passwords / private keys, etc, but NOT everything,
    /// locked memory is a finite resource.
    pub fn new_mem_locked(size: usize) -> SodokenResult<Self> {
        Ok(Self(Arc::new(BufWriteMemLocked::new(size)?)))
    }

    /// Deep clone the data referred to by another buffer object,
    /// into a new non-memory-locked BufWrite instance.
    pub fn deep_clone_no_lock<O>(o: O) -> Self
    where
        O: Into<BufRead> + 'static + Send,
    {
        o.into().read_lock().to_vec().into()
    }

    /// Deep clone the data referred to by another buffer object,
    /// into a new MEMORY LOCKED BufWrite instance.
    pub fn deep_clone_mem_locked<O>(o: O) -> SodokenResult<Self>
    where
        O: Into<BufRead> + 'static + Send,
    {
        let o = o.into();
        let len = o.len();
        let out = Self::new_mem_locked(len)?;
        out.write_lock().copy_from_slice(&*o.read_lock());
        Ok(out)
    }

    /// The length of this buffer.
    pub fn len(&self) -> usize {
        self.0.len()
    }

    /// Is this buffer empty?
    pub fn is_empty(&self) -> bool {
        self.0.is_empty()
    }

    /// Obtain read access to the underlying buffer.
    pub fn read_lock(&self) -> ReadGuard<'_> {
        self.0.read_lock()
    }

    /// Obtain write access to the underlying buffer.
    pub fn write_lock(&self) -> WriteGuard<'_> {
        self.0.write_lock()
    }

    /// Downgrade this to a read-only reference
    /// without cloning internal data
    /// and without changing memory locking strategy.
    pub fn to_read(&self) -> BufRead {
        self.0.clone().into_read()
    }

    /// Transform this buffer into an extendable type.
    pub fn to_extend(&self) -> BufExtend {
        self.0.clone().into_extend()
    }

    /// Attempt to extract the inner contents of this buf without cloning.
    /// If this memory is locked or there are clones of this reference,
    /// the unwrap will fail, returning a BufRead instance.
    pub fn try_unwrap(self) -> Result<Box<[u8]>, BufRead> {
        self.0.try_unwrap()
    }
}

/// A concrete sized writable buffer type that may or may not be mem_locked.
#[derive(Debug, Clone)]
pub struct BufWriteSized<const N: usize>(pub Arc<dyn AsBufWriteSized<N>>);

impl<const N: usize> From<[u8; N]> for BufWriteSized<N> {
    fn from(b: [u8; N]) -> Self {
        Self(Arc::new(RwLock::new(b)))
    }
}

impl<const N: usize> BufWriteSized<N> {
    /// Consruct a new BufWrite that is NOT mem_locked.
    pub fn new_no_lock() -> Self {
        [0; N].into()
    }

    /// Construct a new BufWrite that IS mem_locked.
    /// Use this for passwords / private keys, etc, but NOT everything,
    /// locked memory is a finite resource.
    pub fn new_mem_locked() -> SodokenResult<Self> {
        Ok(Self(Arc::new(BufWriteMemLockedSized::new()?)))
    }

    /// Deep clone the data referred to by another buffer object,
    /// into a new non-memory-locked BufWrite instance.
    pub fn deep_clone_no_lock<O>(o: O) -> Self
    where
        O: Into<BufReadSized<N>> + 'static + Send,
    {
        (*o.into().read_lock_sized()).into()
    }

    /// Deep clone the data referred to by another buffer object,
    /// into a new MEMORY LOCKED BufWrite instance.
    pub fn deep_clone_mem_locked<O>(o: O) -> SodokenResult<Self>
    where
        O: Into<BufReadSized<N>> + 'static + Send,
    {
        let o = o.into();
        let out = Self::new_mem_locked()?;
        out.write_lock_sized().copy_from_slice(&*o.read_lock());
        Ok(out)
    }

    /// The length of this buffer.
    pub fn len(&self) -> usize {
        self.0.len()
    }

    /// Is this buffer empty?
    pub fn is_empty(&self) -> bool {
        self.0.is_empty()
    }

    /// Obtain read access to the underlying buffer.
    pub fn read_lock(&self) -> ReadGuard<'_> {
        self.0.read_lock()
    }

    /// Obtain read access to the underlying buffer.
    pub fn read_lock_sized(&self) -> ReadGuardSized<'_, N> {
        self.0.read_lock_sized()
    }

    /// Convert to an unsized BufRead instance
    /// without cloning internal data
    /// and without changing memory locking strategy.
    pub fn to_read_unsized(&self) -> BufRead {
        self.0.clone().into_read_unsized()
    }

    /// Obtain write access to the underlying buffer.
    pub fn write_lock(&self) -> WriteGuard<'_> {
        self.0.write_lock()
    }

    /// Downgrade this to a read-only reference
    /// without cloning internal data
    /// and without changing memory locking strategy.
    pub fn to_read(&self) -> BufRead {
        self.0.clone().into_read()
    }

    /// Obtain write access to the underlying buffer.
    pub fn write_lock_sized(&self) -> WriteGuardSized<'_, N> {
        self.0.write_lock_sized()
    }

    /// Downgrade this to a read-only reference
    /// without cloning internal data
    /// and without changing memory locking strategy.
    pub fn to_read_sized(&self) -> BufReadSized<N> {
        self.0.clone().into_read_sized()
    }

    /// Convert to an unsized BufWrite instance
    /// without cloning internal data
    /// and without changing memory locking strategy.
    pub fn to_write_unsized(&self) -> BufWrite {
        self.0.clone().into_write_unsized()
    }

    /// Transform this buffer into an extendable type.
    pub fn to_extend(&self) -> BufExtend {
        self.0.clone().into_extend()
    }

    /// Attempt to extract the inner contents of this buf without cloning.
    /// If this memory is locked or there are clones of this reference,
    /// the unwrap will fail, returning a BufRead instance.
    pub fn try_unwrap(self) -> Result<Box<[u8]>, BufRead> {
        self.0.try_unwrap()
    }

    /// Attempt to extract the inner contents of this buf without cloning.
    /// If this memory is locked or there are clones of this reference,
    /// the unwrap will fail, returning a BufRead instance.
    pub fn try_unwrap_sized(self) -> Result<[u8; N], BufReadSized<N>> {
        self.0.try_unwrap_sized()
    }
}

/// A concrete extendable buffer type that may or may not be mem_locked.
#[derive(Debug, Clone)]
pub struct BufExtend(pub Arc<dyn AsBufExtend>);

impl From<BufWrite> for BufExtend {
    fn from(b: BufWrite) -> Self {
        b.to_extend()
    }
}

impl<const N: usize> From<BufWriteSized<N>> for BufExtend {
    fn from(b: BufWriteSized<N>) -> Self {
        b.to_extend()
    }
}

impl From<Vec<u8>> for BufExtend {
    fn from(b: Vec<u8>) -> Self {
        Self(Arc::new(RwLock::new(b)))
    }
}

impl BufExtend {
    /// Construct a new extendable buffer with given capacity.
    /// It's ok / still fairly efficient to set this to zero.
    pub fn new_no_lock(initial_capacity: usize) -> Self {
        Vec::with_capacity(initial_capacity).into()
    }

    /// Obtain access to extend the underlying buffer.
    pub fn extend_lock(&self) -> ExtendGuard<'_> {
        self.0.extend_lock()
    }

    /// The length of this buffer.
    pub fn len(&self) -> usize {
        self.0.len()
    }

    /// Is this buffer empty?
    pub fn is_empty(&self) -> bool {
        self.0.is_empty()
    }

    /// Obtain read access to the underlying buffer.
    pub fn read_lock(&self) -> ReadGuard<'_> {
        self.0.read_lock()
    }

    /// Obtain write access to the underlying buffer.
    pub fn write_lock(&self) -> WriteGuard<'_> {
        self.0.write_lock()
    }

    /// Downgrade this to a read-only reference
    /// without cloning internal data
    /// and without changing memory locking strategy.
    pub fn to_read(&self) -> BufRead {
        self.0.clone().into_read()
    }

    /// Attempt to extract the inner contents of this buf without cloning.
    /// If this memory is locked or there are clones of this reference,
    /// the unwrap will fail, returning a BufRead instance.
    pub fn try_unwrap(self) -> Result<Box<[u8]>, BufRead> {
        self.0.try_unwrap()
    }
}

/// Additional types related to working with buffers.
pub mod buffer {
    use super::*;

    /// Indicates we can dereference an item as a readable byte array.
    pub trait AsRead<'a>:
        'a + Deref<Target = [u8]> + AsRef<[u8]> + Borrow<[u8]>
    {
    }

    /// Indicates we can dereference a sized item as a readable byte array.
    pub trait AsReadSized<'a, const N: usize>:
        'a + Deref<Target = [u8; N]> + AsRef<[u8; N]> + Borrow<[u8; N]>
    {
    }

    /// Indicates we can dereference an item as a mutable byte array.
    pub trait AsWrite<'a>:
        'a + AsRead<'a> + DerefMut + AsMut<[u8]> + BorrowMut<[u8]>
    {
    }

    /// Indicates we can dereference a sized item as a mutable byte array.
    pub trait AsWriteSized<'a, const N: usize>:
        'a + AsReadSized<'a, N> + DerefMut + AsMut<[u8; N]> + BorrowMut<[u8; N]>
    {
    }

    /// Indicates we can append bytes without pre-initializing them.
    pub trait AsExtendMut<'a>: 'a {
        /// # Safety
        ///
        /// this is unsafe because the process could potentially
        /// - read uninitialized data from the returned slice
        /// - or fail to initialize the data in the returned slice
        unsafe fn unsafe_extend_mut(
            &mut self,
            len: usize,
        ) -> SodokenResult<&mut [u8]>;

        /// You probably don't want this function... it leads to
        /// an extra slow initialization step.
        /// See `unsafe_extend_mut` or `extend_mut_from_slice`.
        fn extend_mut(&mut self, len: usize) -> SodokenResult<&mut [u8]> {
            let out = unsafe { self.unsafe_extend_mut(len) }?;
            out.fill(0);
            Ok(out)
        }

        /// Extend this extendable buffer with given slice
        fn extend_mut_from_slice(&mut self, oth: &[u8]) -> SodokenResult<()> {
            let len = oth.len();
            let buf = unsafe { self.unsafe_extend_mut(len) }?;
            buf.copy_from_slice(oth);
            Ok(())
        }
    }

    /// A read guard, indicating we have gained access to read buffer memory.
    pub struct ReadGuard<'a>(pub Box<dyn 'a + AsRead<'a>>);

    impl Deref for ReadGuard<'_> {
        type Target = [u8];

        fn deref(&self) -> &Self::Target {
            self.0.deref()
        }
    }

    impl AsRef<[u8]> for ReadGuard<'_> {
        fn as_ref(&self) -> &[u8] {
            self.0.deref()
        }
    }

    impl Borrow<[u8]> for ReadGuard<'_> {
        fn borrow(&self) -> &[u8] {
            self.0.deref()
        }
    }

    impl<'a> AsRead<'a> for ReadGuard<'a> {}

    /// A read guard, indicating we have gained access to read sized buffer memory.
    pub struct ReadGuardSized<'a, const N: usize>(
        pub Box<dyn 'a + AsReadSized<'a, N>>,
    );

    impl<'a, const N: usize> Deref for ReadGuardSized<'a, N> {
        type Target = [u8; N];

        fn deref(&self) -> &Self::Target {
            self.0.deref()
        }
    }

    impl<'a, const N: usize> AsRef<[u8; N]> for ReadGuardSized<'a, N> {
        fn as_ref(&self) -> &[u8; N] {
            self.0.deref()
        }
    }

    impl<'a, const N: usize> Borrow<[u8; N]> for ReadGuardSized<'a, N> {
        fn borrow(&self) -> &[u8; N] {
            self.0.deref()
        }
    }

    impl<'a, const N: usize> AsReadSized<'a, N> for ReadGuardSized<'a, N> {}

    /// A write guard, indicating we have gained access to write buffer memory.
    pub struct WriteGuard<'a>(pub Box<dyn 'a + AsWrite<'a>>);

    impl Deref for WriteGuard<'_> {
        type Target = [u8];

        fn deref(&self) -> &Self::Target {
            self.0.deref()
        }
    }

    impl DerefMut for WriteGuard<'_> {
        fn deref_mut(&mut self) -> &mut Self::Target {
            self.0.deref_mut()
        }
    }

    impl AsRef<[u8]> for WriteGuard<'_> {
        fn as_ref(&self) -> &[u8] {
            self.0.deref()
        }
    }

    impl AsMut<[u8]> for WriteGuard<'_> {
        fn as_mut(&mut self) -> &mut [u8] {
            self.0.deref_mut()
        }
    }

    impl Borrow<[u8]> for WriteGuard<'_> {
        fn borrow(&self) -> &[u8] {
            self.0.deref()
        }
    }

    impl BorrowMut<[u8]> for WriteGuard<'_> {
        fn borrow_mut(&mut self) -> &mut [u8] {
            self.0.deref_mut()
        }
    }

    impl<'a> AsRead<'a> for WriteGuard<'a> {}
    impl<'a> AsWrite<'a> for WriteGuard<'a> {}

    /// A write guard, indicating we have gained access to write sized buffer memory.
    pub struct WriteGuardSized<'a, const N: usize>(
        pub Box<dyn 'a + AsWriteSized<'a, N>>,
    );

    impl<'a, const N: usize> Deref for WriteGuardSized<'a, N> {
        type Target = [u8; N];

        fn deref(&self) -> &Self::Target {
            self.0.deref()
        }
    }

    impl<'a, const N: usize> DerefMut for WriteGuardSized<'a, N> {
        fn deref_mut(&mut self) -> &mut Self::Target {
            self.0.deref_mut()
        }
    }

    impl<'a, const N: usize> AsRef<[u8; N]> for WriteGuardSized<'a, N> {
        fn as_ref(&self) -> &[u8; N] {
            self.0.deref()
        }
    }

    impl<'a, const N: usize> AsMut<[u8; N]> for WriteGuardSized<'a, N> {
        fn as_mut(&mut self) -> &mut [u8; N] {
            self.0.deref_mut()
        }
    }

    impl<'a, const N: usize> Borrow<[u8; N]> for WriteGuardSized<'a, N> {
        fn borrow(&self) -> &[u8; N] {
            self.0.deref()
        }
    }

    impl<'a, const N: usize> BorrowMut<[u8; N]> for WriteGuardSized<'a, N> {
        fn borrow_mut(&mut self) -> &mut [u8; N] {
            self.0.deref_mut()
        }
    }

    impl<'a, const N: usize> AsReadSized<'a, N> for WriteGuardSized<'a, N> {}
    impl<'a, const N: usize> AsWriteSized<'a, N> for WriteGuardSized<'a, N> {}

    /// An extend guard, indicating we have gained access to extend the buffer.
    pub struct ExtendGuard<'a>(pub Box<dyn 'a + AsExtendMut<'a>>);

    impl<'a> ExtendGuard<'a> {
        /// # Safety
        ///
        /// this is unsafe because the process could potentially
        /// - read uninitialized data from the returned slice
        /// - or fail to initialize the data in the returned slice
        pub unsafe fn unsafe_extend_mut(
            &mut self,
            len: usize,
        ) -> SodokenResult<&mut [u8]> {
            self.0.unsafe_extend_mut(len)
        }

        /// You probably don't want this function... it leads to
        /// an extra slow initialization step.
        /// See `unsafe_extend_mut` or `extend_mut_from_slice`.
        pub fn extend_mut(&mut self, len: usize) -> SodokenResult<&mut [u8]> {
            self.0.extend_mut(len)
        }

        /// Extend this extendable buffer with given slice
        pub fn extend_mut_from_slice(
            &mut self,
            oth: &[u8],
        ) -> SodokenResult<()> {
            self.0.extend_mut_from_slice(oth)
        }
    }

    /// A readable buffer that may or may not be mem_locked.
    pub trait AsBufRead: 'static + Debug + Send + Sync {
        /// The length of this buffer.
        fn len(&self) -> usize;

        /// Is this buffer empty?
        fn is_empty(&self) -> bool;

        /// Obtain read access to the underlying buffer.
        fn read_lock(&self) -> ReadGuard<'_>;

        /// Attempt to extract the inner contents of this buf without cloning.
        /// If this memory is locked or there are clones of this reference,
        /// the unwrap will fail, returning a BufRead instance.
        fn try_unwrap(self: Arc<Self>) -> Result<Box<[u8]>, BufRead>;
    }

    impl AsBufRead for Arc<[u8]> {
        fn len(&self) -> usize {
            self.as_ref().len()
        }

        fn is_empty(&self) -> bool {
            self.as_ref().is_empty()
        }

        fn read_lock(&self) -> ReadGuard<'_> {
            struct X<'a>(&'a [u8]);
            impl<'a> std::ops::Deref for X<'a> {
                type Target = [u8];

                fn deref(&self) -> &Self::Target {
                    self.0
                }
            }
            impl<'a> AsRef<[u8]> for X<'a> {
                fn as_ref(&self) -> &[u8] {
                    self.0
                }
            }
            impl<'a> Borrow<[u8]> for X<'a> {
                fn borrow(&self) -> &[u8] {
                    self.0
                }
            }
            impl<'a> AsRead<'a> for X<'a> {}
            ReadGuard(Box::new(X(&self[..])))
        }

        fn try_unwrap(self: Arc<Self>) -> Result<Box<[u8]>, BufRead> {
            // cannot extract contents of Arc<[u8]> without cloning
            // the douple Arc::try_unwrap leads to an unsized stack issue...
            Err(BufRead(self))
        }
    }

    impl AsBufRead for Box<[u8]> {
        fn len(&self) -> usize {
            self.as_ref().len()
        }

        fn is_empty(&self) -> bool {
            self.as_ref().is_empty()
        }

        fn read_lock(&self) -> ReadGuard<'_> {
            struct X<'a>(&'a [u8]);
            impl<'a> std::ops::Deref for X<'a> {
                type Target = [u8];

                fn deref(&self) -> &Self::Target {
                    self.0
                }
            }
            impl<'a> AsRef<[u8]> for X<'a> {
                fn as_ref(&self) -> &[u8] {
                    self.0
                }
            }
            impl<'a> Borrow<[u8]> for X<'a> {
                fn borrow(&self) -> &[u8] {
                    self.0
                }
            }
            impl<'a> AsRead<'a> for X<'a> {}
            ReadGuard(Box::new(X(&self[..])))
        }

        fn try_unwrap(self: Arc<Self>) -> Result<Box<[u8]>, BufRead> {
            match Arc::try_unwrap(self) {
                Ok(r) => Ok(r),
                Err(s) => Err(BufRead(s)),
            }
        }
    }

    impl<const N: usize> AsBufRead for [u8; N] {
        fn len(&self) -> usize {
            self.as_ref().len()
        }

        fn is_empty(&self) -> bool {
            self.as_ref().is_empty()
        }

        fn read_lock(&self) -> ReadGuard<'_> {
            struct X<'a>(&'a [u8]);
            impl<'a> std::ops::Deref for X<'a> {
                type Target = [u8];

                fn deref(&self) -> &Self::Target {
                    self.0
                }
            }
            impl<'a> AsRef<[u8]> for X<'a> {
                fn as_ref(&self) -> &[u8] {
                    self.0
                }
            }
            impl<'a> Borrow<[u8]> for X<'a> {
                fn borrow(&self) -> &[u8] {
                    self.0
                }
            }
            impl<'a> AsRead<'a> for X<'a> {}
            ReadGuard(Box::new(X(&self[..])))
        }

        fn try_unwrap(self: Arc<Self>) -> Result<Box<[u8]>, BufRead> {
            match Arc::try_unwrap(self) {
                Ok(r) => Ok(r.into()),
                Err(s) => Err(BufRead(s)),
            }
        }
    }

    impl AsBufRead for RwLock<Box<[u8]>> {
        fn len(&self) -> usize {
            self.read().len()
        }

        fn is_empty(&self) -> bool {
            self.read().is_empty()
        }

        fn read_lock(&self) -> ReadGuard<'_> {
            struct X<'a>(RwLockReadGuard<'a, Box<[u8]>>);
            impl<'a> std::ops::Deref for X<'a> {
                type Target = [u8];

                fn deref(&self) -> &Self::Target {
                    &self.0
                }
            }
            impl<'a> AsRef<[u8]> for X<'a> {
                fn as_ref(&self) -> &[u8] {
                    &self.0
                }
            }
            impl<'a> Borrow<[u8]> for X<'a> {
                fn borrow(&self) -> &[u8] {
                    &self.0
                }
            }
            impl<'a> AsRead<'a> for X<'a> {}
            ReadGuard(Box::new(X(self.read())))
        }

        fn try_unwrap(self: Arc<Self>) -> Result<Box<[u8]>, BufRead> {
            match Arc::try_unwrap(self) {
                Ok(r) => Ok(r.into_inner()),
                Err(s) => Err(BufRead(s)),
            }
        }
    }

    impl AsBufRead for RwLock<Vec<u8>> {
        fn len(&self) -> usize {
            self.read().len()
        }

        fn is_empty(&self) -> bool {
            self.read().is_empty()
        }

        fn read_lock(&self) -> ReadGuard<'_> {
            struct X<'a>(RwLockReadGuard<'a, Vec<u8>>);
            impl<'a> std::ops::Deref for X<'a> {
                type Target = [u8];

                fn deref(&self) -> &Self::Target {
                    &self.0
                }
            }
            impl<'a> AsRef<[u8]> for X<'a> {
                fn as_ref(&self) -> &[u8] {
                    &self.0
                }
            }
            impl<'a> Borrow<[u8]> for X<'a> {
                fn borrow(&self) -> &[u8] {
                    &self.0
                }
            }
            impl<'a> AsRead<'a> for X<'a> {}
            ReadGuard(Box::new(X(self.read())))
        }

        fn try_unwrap(self: Arc<Self>) -> Result<Box<[u8]>, BufRead> {
            match Arc::try_unwrap(self) {
                Ok(r) => Ok(r.into_inner().into()),
                Err(s) => Err(BufRead(s)),
            }
        }
    }

    impl<const N: usize> AsBufRead for RwLock<[u8; N]> {
        fn len(&self) -> usize {
            self.read().len()
        }

        fn is_empty(&self) -> bool {
            self.read().is_empty()
        }

        fn read_lock(&self) -> ReadGuard<'_> {
            struct X<'a, const N: usize>(RwLockReadGuard<'a, [u8; N]>);
            impl<'a, const N: usize> std::ops::Deref for X<'a, N> {
                type Target = [u8];

                fn deref(&self) -> &Self::Target {
                    &self.0[..]
                }
            }
            impl<'a, const N: usize> AsRef<[u8]> for X<'a, N> {
                fn as_ref(&self) -> &[u8] {
                    &self.0[..]
                }
            }
            impl<'a, const N: usize> Borrow<[u8]> for X<'a, N> {
                fn borrow(&self) -> &[u8] {
                    &self.0[..]
                }
            }
            impl<'a, const N: usize> AsRead<'a> for X<'a, N> {}
            ReadGuard(Box::new(X(self.read())))
        }

        fn try_unwrap(self: Arc<Self>) -> Result<Box<[u8]>, BufRead> {
            match Arc::try_unwrap(self) {
                Ok(r) => Ok(r.into_inner().into()),
                Err(s) => Err(BufRead(s)),
            }
        }
    }

    /// A sized readable buffer that may or may not be mem_locked.
    pub trait AsBufReadSized<const N: usize>:
        'static + AsBufRead + Debug + Send + Sync
    {
        /// Obtain read access to the underlying buffer.
        fn read_lock_sized(&self) -> ReadGuardSized<'_, N>;

        /// Convert to an unsized BufRead instance
        /// without cloning internal data
        /// and without changing memory locking strategy.
        fn into_read_unsized(self: Arc<Self>) -> BufRead;

        /// Attempt to extract the inner contents of this buf without cloning.
        /// If this memory is locked or there are clones of this reference,
        /// the unwrap will fail, returning a BufRead instance.
        fn try_unwrap_sized(
            self: Arc<Self>,
        ) -> Result<[u8; N], BufReadSized<N>>;
    }

    impl<const N: usize> AsBufReadSized<N> for [u8; N] {
        fn read_lock_sized(&self) -> ReadGuardSized<'_, N> {
            struct X<'a, const N: usize>(&'a [u8; N]);
            impl<'a, const N: usize> std::ops::Deref for X<'a, N> {
                type Target = [u8; N];

                fn deref(&self) -> &Self::Target {
                    self.0
                }
            }
            impl<'a, const N: usize> AsRef<[u8; N]> for X<'a, N> {
                fn as_ref(&self) -> &[u8; N] {
                    self.0
                }
            }
            impl<'a, const N: usize> Borrow<[u8; N]> for X<'a, N> {
                fn borrow(&self) -> &[u8; N] {
                    self.0
                }
            }
            impl<'a, const N: usize> AsReadSized<'a, N> for X<'a, N> {}
            ReadGuardSized(Box::new(X(self)))
        }

        fn into_read_unsized(self: Arc<Self>) -> BufRead {
            BufRead(self)
        }

        fn try_unwrap_sized(
            self: Arc<Self>,
        ) -> Result<[u8; N], BufReadSized<N>> {
            match Arc::try_unwrap(self) {
                Ok(r) => Ok(r),
                Err(s) => Err(BufReadSized(s)),
            }
        }
    }

    impl<const N: usize> AsBufReadSized<N> for RwLock<[u8; N]> {
        fn read_lock_sized(&self) -> ReadGuardSized<'_, N> {
            struct X<'a, const N: usize>(RwLockReadGuard<'a, [u8; N]>);
            impl<'a, const N: usize> std::ops::Deref for X<'a, N> {
                type Target = [u8; N];

                fn deref(&self) -> &Self::Target {
                    &self.0
                }
            }
            impl<'a, const N: usize> AsRef<[u8; N]> for X<'a, N> {
                fn as_ref(&self) -> &[u8; N] {
                    &self.0
                }
            }
            impl<'a, const N: usize> Borrow<[u8; N]> for X<'a, N> {
                fn borrow(&self) -> &[u8; N] {
                    &self.0
                }
            }
            impl<'a, const N: usize> AsReadSized<'a, N> for X<'a, N> {}
            ReadGuardSized(Box::new(X(self.read())))
        }

        fn into_read_unsized(self: Arc<Self>) -> BufRead {
            BufRead(self)
        }

        fn try_unwrap_sized(
            self: Arc<Self>,
        ) -> Result<[u8; N], BufReadSized<N>> {
            match Arc::try_unwrap(self) {
                Ok(r) => Ok(r.into_inner()),
                Err(s) => Err(BufReadSized(s)),
            }
        }
    }

    /// A writable buffer that may or may not be mem_locked.
    pub trait AsBufWrite: AsBufRead {
        /// Obtain write access to the underlying buffer.
        fn write_lock(&self) -> WriteGuard<'_>;

        /// Downgrade this to a read-only reference
        /// without cloning internal data
        /// and without changing memory locking strategy.
        fn into_read(self: Arc<Self>) -> BufRead;

        /// Transform this buffer into an extendable type.
        fn into_extend(self: Arc<Self>) -> BufExtend;
    }

    /// a fake extend guard that operates over a whole write guard
    fn write_guard_to_extend_guard(g: WriteGuard<'_>) -> ExtendGuard<'_> {
        // this lock simulates an extendable buffer
        // it's not actually unsafe, and we get no performance benefits
        // because the memory is actually pre-initialized
        struct G<'a>(WriteGuard<'a>, usize);
        impl<'a> AsExtendMut<'a> for G<'a> {
            unsafe fn unsafe_extend_mut(
                &mut self,
                len: usize,
            ) -> SodokenResult<&mut [u8]> {
                let cur_len = self.1;
                let new_len = cur_len + len;
                if new_len > self.0.len() {
                    return Err(SodokenErrKind::WriteOverflow.into());
                }
                self.1 = new_len;
                Ok(&mut self.0[cur_len..new_len])
            }
        }
        ExtendGuard(Box::new(G(g, 0)))
    }

    impl AsBufWrite for RwLock<Box<[u8]>> {
        fn write_lock(&self) -> WriteGuard<'_> {
            struct X<'a>(RwLockWriteGuard<'a, Box<[u8]>>);
            impl<'a> std::ops::Deref for X<'a> {
                type Target = [u8];

                fn deref(&self) -> &Self::Target {
                    &self.0
                }
            }
            impl<'a> std::ops::DerefMut for X<'a> {
                fn deref_mut(&mut self) -> &mut Self::Target {
                    &mut self.0
                }
            }
            impl<'a> AsRef<[u8]> for X<'a> {
                fn as_ref(&self) -> &[u8] {
                    &self.0
                }
            }
            impl<'a> AsMut<[u8]> for X<'a> {
                fn as_mut(&mut self) -> &mut [u8] {
                    &mut self.0
                }
            }
            impl<'a> Borrow<[u8]> for X<'a> {
                fn borrow(&self) -> &[u8] {
                    &self.0
                }
            }
            impl<'a> BorrowMut<[u8]> for X<'a> {
                fn borrow_mut(&mut self) -> &mut [u8] {
                    &mut self.0
                }
            }
            impl<'a> AsRead<'a> for X<'a> {}
            impl<'a> AsWrite<'a> for X<'a> {}
            WriteGuard(Box::new(X(self.write())))
        }

        fn into_read(self: Arc<Self>) -> BufRead {
            BufRead(self)
        }

        fn into_extend(self: Arc<Self>) -> BufExtend {
            BufExtend(self)
        }
    }

    impl AsBufWrite for RwLock<Vec<u8>> {
        fn write_lock(&self) -> WriteGuard<'_> {
            struct X<'a>(RwLockWriteGuard<'a, Vec<u8>>);
            impl<'a> std::ops::Deref for X<'a> {
                type Target = [u8];

                fn deref(&self) -> &Self::Target {
                    &self.0
                }
            }
            impl<'a> std::ops::DerefMut for X<'a> {
                fn deref_mut(&mut self) -> &mut Self::Target {
                    &mut self.0
                }
            }
            impl<'a> AsRef<[u8]> for X<'a> {
                fn as_ref(&self) -> &[u8] {
                    &self.0
                }
            }
            impl<'a> AsMut<[u8]> for X<'a> {
                fn as_mut(&mut self) -> &mut [u8] {
                    &mut self.0
                }
            }
            impl<'a> Borrow<[u8]> for X<'a> {
                fn borrow(&self) -> &[u8] {
                    &self.0
                }
            }
            impl<'a> BorrowMut<[u8]> for X<'a> {
                fn borrow_mut(&mut self) -> &mut [u8] {
                    &mut self.0
                }
            }
            impl<'a> AsRead<'a> for X<'a> {}
            impl<'a> AsWrite<'a> for X<'a> {}
            WriteGuard(Box::new(X(self.write())))
        }

        fn into_read(self: Arc<Self>) -> BufRead {
            BufRead(self)
        }

        fn into_extend(self: Arc<Self>) -> BufExtend {
            BufExtend(self)
        }
    }

    impl<const N: usize> AsBufWrite for RwLock<[u8; N]> {
        fn write_lock(&self) -> WriteGuard<'_> {
            struct X<'a, const N: usize>(RwLockWriteGuard<'a, [u8; N]>);
            impl<'a, const N: usize> std::ops::Deref for X<'a, N> {
                type Target = [u8];

                fn deref(&self) -> &Self::Target {
                    &*self.0
                }
            }
            impl<'a, const N: usize> std::ops::DerefMut for X<'a, N> {
                fn deref_mut(&mut self) -> &mut Self::Target {
                    &mut *self.0
                }
            }
            impl<'a, const N: usize> AsRef<[u8]> for X<'a, N> {
                fn as_ref(&self) -> &[u8] {
                    &*self.0
                }
            }
            impl<'a, const N: usize> AsMut<[u8]> for X<'a, N> {
                fn as_mut(&mut self) -> &mut [u8] {
                    &mut *self.0
                }
            }
            impl<'a, const N: usize> Borrow<[u8]> for X<'a, N> {
                fn borrow(&self) -> &[u8] {
                    &*self.0
                }
            }
            impl<'a, const N: usize> BorrowMut<[u8]> for X<'a, N> {
                fn borrow_mut(&mut self) -> &mut [u8] {
                    &mut *self.0
                }
            }
            impl<'a, const N: usize> AsRead<'a> for X<'a, N> {}
            impl<'a, const N: usize> AsWrite<'a> for X<'a, N> {}
            WriteGuard(Box::new(X(self.write())))
        }

        fn into_read(self: Arc<Self>) -> BufRead {
            BufRead(self)
        }

        fn into_extend(self: Arc<Self>) -> BufExtend {
            BufExtend(self)
        }
    }

    /// A writable buffer that may or may not be mem_locked.
    pub trait AsBufWriteSized<const N: usize>:
        AsBufReadSized<N> + AsBufWrite
    {
        /// Obtain write access to the underlying buffer.
        fn write_lock_sized(&self) -> WriteGuardSized<'_, N>;

        /// Downgrade this to a read-only reference
        /// without cloning internal data
        /// and without changing memory locking strategy.
        fn into_read_sized(self: Arc<Self>) -> BufReadSized<N>;

        /// Convert to an unsized BufWrite instance
        /// without cloning internal data
        /// and without changing memory locking strategy.
        fn into_write_unsized(self: Arc<Self>) -> BufWrite;
    }

    impl<const N: usize> AsBufWriteSized<N> for RwLock<[u8; N]> {
        fn write_lock_sized(&self) -> WriteGuardSized<'_, N> {
            struct X<'a, const N: usize>(RwLockWriteGuard<'a, [u8; N]>);
            impl<'a, const N: usize> std::ops::Deref for X<'a, N> {
                type Target = [u8; N];

                fn deref(&self) -> &Self::Target {
                    &*self.0
                }
            }
            impl<'a, const N: usize> std::ops::DerefMut for X<'a, N> {
                fn deref_mut(&mut self) -> &mut Self::Target {
                    &mut *self.0
                }
            }
            impl<'a, const N: usize> AsRef<[u8; N]> for X<'a, N> {
                fn as_ref(&self) -> &[u8; N] {
                    &*self.0
                }
            }
            impl<'a, const N: usize> AsMut<[u8; N]> for X<'a, N> {
                fn as_mut(&mut self) -> &mut [u8; N] {
                    &mut *self.0
                }
            }
            impl<'a, const N: usize> Borrow<[u8; N]> for X<'a, N> {
                fn borrow(&self) -> &[u8; N] {
                    &*self.0
                }
            }
            impl<'a, const N: usize> BorrowMut<[u8; N]> for X<'a, N> {
                fn borrow_mut(&mut self) -> &mut [u8; N] {
                    &mut *self.0
                }
            }
            impl<'a, const N: usize> AsReadSized<'a, N> for X<'a, N> {}
            impl<'a, const N: usize> AsWriteSized<'a, N> for X<'a, N> {}
            WriteGuardSized(Box::new(X(self.write())))
        }

        fn into_read_sized(self: Arc<Self>) -> BufReadSized<N> {
            BufReadSized(self)
        }

        fn into_write_unsized(self: Arc<Self>) -> BufWrite {
            BufWrite(self)
        }
    }

    /// A buffer that may be appended to and may or may not be mem_locked.
    pub trait AsBufExtend: AsBufWrite {
        /// Obtain access to extend the underlying buffer.
        /// Warning: Depending on the underlying data type,
        /// each new ExtendGuard could be a new cursor... i.e.
        /// pulling a new extend lock could overwrite previous data.
        fn extend_lock(&self) -> ExtendGuard<'_>;
    }

    impl AsBufExtend for RwLock<Box<[u8]>> {
        fn extend_lock(&self) -> ExtendGuard<'_> {
            write_guard_to_extend_guard(self.write_lock())
        }
    }

    impl<const N: usize> AsBufExtend for RwLock<[u8; N]> {
        fn extend_lock(&self) -> ExtendGuard<'_> {
            write_guard_to_extend_guard(self.write_lock())
        }
    }

    impl AsBufExtend for RwLock<Vec<u8>> {
        fn extend_lock(&self) -> ExtendGuard<'_> {
            struct X<'a>(RwLockWriteGuard<'a, Vec<u8>>);
            impl<'a> AsExtendMut<'a> for X<'a> {
                unsafe fn unsafe_extend_mut(
                    &mut self,
                    len: usize,
                ) -> SodokenResult<&mut [u8]> {
                    let cur_len = self.0.len();
                    let new_len = cur_len + len;
                    self.0.reserve(len);
                    // *this* is actually unsafe
                    // we're giving potential access to uninitialized data here
                    self.0.set_len(new_len);
                    // and here
                    Ok(&mut self.0[cur_len..new_len])
                }
            }
            ExtendGuard(Box::new(X(self.write())))
        }
    }

    /// This read-only buffer type is mem_locked.
    /// Use this for passwords / private keys, etc, but NOT everything,
    /// locked memory is a finite resource.
    pub struct BufReadMemLocked(Mutex<safe::s3buf::S3Buf>);

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

    impl AsBufRead for BufReadMemLocked {
        fn len(&self) -> usize {
            self.0.lock().len()
        }

        fn is_empty(&self) -> bool {
            self.len() == 0
        }

        fn read_lock(&self) -> ReadGuard<'_> {
            struct X<'a>(MutexGuard<'a, safe::s3buf::S3Buf>);
            impl Drop for X<'_> {
                fn drop(&mut self) {
                    self.0.set_no_access();
                }
            }
            impl Deref for X<'_> {
                type Target = [u8];
                fn deref(&self) -> &Self::Target {
                    self.0.as_slice()
                }
            }
            impl AsRef<[u8]> for X<'_> {
                fn as_ref(&self) -> &[u8] {
                    self.0.as_slice()
                }
            }
            impl Borrow<[u8]> for X<'_> {
                fn borrow(&self) -> &[u8] {
                    self.0.as_slice()
                }
            }
            impl<'a> AsRead<'a> for X<'a> {}
            let g = self.0.lock();
            g.set_readable();
            ReadGuard(Box::new(X(g)))
        }

        fn try_unwrap(self: Arc<Self>) -> Result<Box<[u8]>, BufRead> {
            // cannot extract contents of memlocked data without cloning
            Err(BufRead(self))
        }
    }

    /// This sized read-only buffer type is mem_locked.
    /// Use this for passwords / private keys, etc, but NOT everything,
    /// locked memory is a finite resource.
    pub struct BufReadMemLockedSized<const N: usize>(Mutex<safe::s3buf::S3Buf>);

    impl<const N: usize> Debug for BufReadMemLockedSized<N> {
        fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
            f.debug_struct("BufReadMemLocked").finish()
        }
    }

    impl<const N: usize> AsBufRead for BufReadMemLockedSized<N> {
        fn len(&self) -> usize {
            self.0.lock().len()
        }

        fn is_empty(&self) -> bool {
            self.len() == 0
        }

        fn read_lock(&self) -> ReadGuard<'_> {
            struct X<'a, const N: usize>(MutexGuard<'a, safe::s3buf::S3Buf>);
            impl<const N: usize> Drop for X<'_, N> {
                fn drop(&mut self) {
                    self.0.set_no_access();
                }
            }
            impl<const N: usize> Deref for X<'_, N> {
                type Target = [u8];
                fn deref(&self) -> &Self::Target {
                    self.0.as_slice()
                }
            }
            impl<const N: usize> AsRef<[u8]> for X<'_, N> {
                fn as_ref(&self) -> &[u8] {
                    self.0.as_slice()
                }
            }
            impl<const N: usize> Borrow<[u8]> for X<'_, N> {
                fn borrow(&self) -> &[u8] {
                    self.0.as_slice()
                }
            }
            impl<'a, const N: usize> AsRead<'a> for X<'a, N> {}
            let g = self.0.lock();
            g.set_readable();
            let x: X<N> = X(g);
            ReadGuard(Box::new(x))
        }

        fn try_unwrap(self: Arc<Self>) -> Result<Box<[u8]>, BufRead> {
            // cannot extract contents of memlocked data without cloning
            Err(BufRead(self))
        }
    }

    impl<const N: usize> AsBufReadSized<N> for BufReadMemLockedSized<N> {
        fn read_lock_sized(&self) -> ReadGuardSized<'_, N> {
            struct X<'a, const N: usize>(MutexGuard<'a, safe::s3buf::S3Buf>);
            impl<const N: usize> Drop for X<'_, N> {
                fn drop(&mut self) {
                    self.0.set_no_access();
                }
            }
            impl<const N: usize> Deref for X<'_, N> {
                type Target = [u8; N];
                fn deref(&self) -> &Self::Target {
                    self.0.as_sized()
                }
            }
            impl<const N: usize> AsRef<[u8; N]> for X<'_, N> {
                fn as_ref(&self) -> &[u8; N] {
                    self.0.as_sized()
                }
            }
            impl<const N: usize> Borrow<[u8; N]> for X<'_, N> {
                fn borrow(&self) -> &[u8; N] {
                    self.0.as_sized()
                }
            }
            impl<'a, const N: usize> AsReadSized<'a, N> for X<'a, N> {}
            let g = self.0.lock();
            g.set_readable();
            ReadGuardSized(Box::new(X(g)))
        }

        fn into_read_unsized(self: Arc<Self>) -> BufRead {
            BufRead(self)
        }

        fn try_unwrap_sized(
            self: Arc<Self>,
        ) -> Result<[u8; N], BufReadSized<N>> {
            // cannot extract contents of memlocked data without cloning
            Err(BufReadSized(self))
        }
    }

    /// This writable buffer type is mem_locked.
    /// Use this for passwords / private keys, etc, but NOT everything,
    /// locked memory is a finite resource.
    pub struct BufWriteMemLocked(Mutex<safe::s3buf::S3Buf>);

    impl BufWriteMemLocked {
        /// Construct a new writable, mem_locked buffer.
        /// Use this for passwords / private keys, etc, but NOT everything,
        /// locked memory is a finite resource.
        pub fn new(size: usize) -> SodokenResult<Self> {
            Ok(Self(Mutex::new(safe::s3buf::S3Buf::new(size)?)))
        }
    }

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

    impl AsBufRead for BufWriteMemLocked {
        fn len(&self) -> usize {
            self.0.lock().len()
        }

        fn is_empty(&self) -> bool {
            self.len() == 0
        }

        fn read_lock(&self) -> ReadGuard<'_> {
            struct X<'a>(MutexGuard<'a, safe::s3buf::S3Buf>);
            impl Drop for X<'_> {
                fn drop(&mut self) {
                    self.0.set_no_access();
                }
            }
            impl Deref for X<'_> {
                type Target = [u8];
                fn deref(&self) -> &Self::Target {
                    self.0.as_slice()
                }
            }
            impl AsRef<[u8]> for X<'_> {
                fn as_ref(&self) -> &[u8] {
                    self.0.as_slice()
                }
            }
            impl Borrow<[u8]> for X<'_> {
                fn borrow(&self) -> &[u8] {
                    self.0.as_slice()
                }
            }
            impl<'a> AsRead<'a> for X<'a> {}
            let g = self.0.lock();
            g.set_readable();
            ReadGuard(Box::new(X(g)))
        }

        fn try_unwrap(self: Arc<Self>) -> Result<Box<[u8]>, BufRead> {
            // cannot extract contents of memlocked data without cloning
            Err(BufRead(self))
        }
    }

    impl AsBufWrite for BufWriteMemLocked {
        fn write_lock(&self) -> WriteGuard<'_> {
            struct X<'a>(MutexGuard<'a, safe::s3buf::S3Buf>);
            impl Drop for X<'_> {
                fn drop(&mut self) {
                    self.0.set_no_access();
                }
            }
            impl Deref for X<'_> {
                type Target = [u8];
                fn deref(&self) -> &Self::Target {
                    self.0.as_slice()
                }
            }
            impl DerefMut for X<'_> {
                fn deref_mut(&mut self) -> &mut Self::Target {
                    self.0.as_slice_mut()
                }
            }
            impl AsRef<[u8]> for X<'_> {
                fn as_ref(&self) -> &[u8] {
                    self.0.as_slice()
                }
            }
            impl AsMut<[u8]> for X<'_> {
                fn as_mut(&mut self) -> &mut [u8] {
                    self.0.as_slice_mut()
                }
            }
            impl Borrow<[u8]> for X<'_> {
                fn borrow(&self) -> &[u8] {
                    self.0.as_slice()
                }
            }
            impl BorrowMut<[u8]> for X<'_> {
                fn borrow_mut(&mut self) -> &mut [u8] {
                    self.0.as_slice_mut()
                }
            }
            impl<'a> AsRead<'a> for X<'a> {}
            impl<'a> AsWrite<'a> for X<'a> {}
            let g = self.0.lock();
            g.set_writable();
            WriteGuard(Box::new(X(g)))
        }

        fn into_read(self: Arc<Self>) -> BufRead {
            BufRead(self)
        }

        fn into_extend(self: Arc<Self>) -> BufExtend {
            BufExtend(self)
        }
    }

    impl AsBufExtend for BufWriteMemLocked {
        fn extend_lock(&self) -> ExtendGuard<'_> {
            write_guard_to_extend_guard(self.write_lock())
        }
    }

    /// This writable buffer type is mem_locked.
    /// Use this for passwords / private keys, etc, but NOT everything,
    /// locked memory is a finite resource.
    pub struct BufWriteMemLockedSized<const N: usize>(
        Mutex<safe::s3buf::S3Buf>,
    );

    impl<const N: usize> BufWriteMemLockedSized<N> {
        /// Construct a new writable, mem_locked buffer.
        /// Use this for passwords / private keys, etc, but NOT everything,
        /// locked memory is a finite resource.
        pub fn new() -> SodokenResult<Self> {
            Ok(Self(Mutex::new(safe::s3buf::S3Buf::new(N)?)))
        }
    }

    impl<const N: usize> Debug for BufWriteMemLockedSized<N> {
        fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
            f.debug_struct("BufWriteMemLocked").finish()
        }
    }

    impl<const N: usize> AsBufRead for BufWriteMemLockedSized<N> {
        fn len(&self) -> usize {
            self.0.lock().len()
        }

        fn is_empty(&self) -> bool {
            self.len() == 0
        }

        fn read_lock(&self) -> ReadGuard<'_> {
            struct X<'a, const N: usize>(MutexGuard<'a, safe::s3buf::S3Buf>);
            impl<const N: usize> Drop for X<'_, N> {
                fn drop(&mut self) {
                    self.0.set_no_access();
                }
            }
            impl<const N: usize> Deref for X<'_, N> {
                type Target = [u8];
                fn deref(&self) -> &Self::Target {
                    self.0.as_slice()
                }
            }
            impl<const N: usize> AsRef<[u8]> for X<'_, N> {
                fn as_ref(&self) -> &[u8] {
                    self.0.as_slice()
                }
            }
            impl<const N: usize> Borrow<[u8]> for X<'_, N> {
                fn borrow(&self) -> &[u8] {
                    self.0.as_slice()
                }
            }
            impl<'a, const N: usize> AsRead<'a> for X<'a, N> {}
            let g = self.0.lock();
            g.set_readable();
            let x: X<N> = X(g);
            ReadGuard(Box::new(x))
        }

        fn try_unwrap(self: Arc<Self>) -> Result<Box<[u8]>, BufRead> {
            // cannot extract contents of memlocked data without cloning
            Err(BufRead(self))
        }
    }

    impl<const N: usize> AsBufReadSized<N> for BufWriteMemLockedSized<N> {
        fn read_lock_sized(&self) -> ReadGuardSized<'_, N> {
            struct X<'a, const N: usize>(MutexGuard<'a, safe::s3buf::S3Buf>);
            impl<const N: usize> Drop for X<'_, N> {
                fn drop(&mut self) {
                    self.0.set_no_access();
                }
            }
            impl<const N: usize> Deref for X<'_, N> {
                type Target = [u8; N];
                fn deref(&self) -> &Self::Target {
                    self.0.as_sized()
                }
            }
            impl<const N: usize> AsRef<[u8; N]> for X<'_, N> {
                fn as_ref(&self) -> &[u8; N] {
                    self.0.as_sized()
                }
            }
            impl<const N: usize> Borrow<[u8; N]> for X<'_, N> {
                fn borrow(&self) -> &[u8; N] {
                    self.0.as_sized()
                }
            }
            impl<'a, const N: usize> AsReadSized<'a, N> for X<'a, N> {}
            let g = self.0.lock();
            g.set_readable();
            ReadGuardSized(Box::new(X(g)))
        }

        fn into_read_unsized(self: Arc<Self>) -> BufRead {
            BufRead(self)
        }

        fn try_unwrap_sized(
            self: Arc<Self>,
        ) -> Result<[u8; N], BufReadSized<N>> {
            // cannot extract contents of memlocked data without cloning
            Err(BufReadSized(self))
        }
    }

    impl<const N: usize> AsBufWrite for BufWriteMemLockedSized<N> {
        fn write_lock(&self) -> WriteGuard<'_> {
            struct X<'a, const N: usize>(MutexGuard<'a, safe::s3buf::S3Buf>);
            impl<const N: usize> Drop for X<'_, N> {
                fn drop(&mut self) {
                    self.0.set_no_access();
                }
            }
            impl<const N: usize> Deref for X<'_, N> {
                type Target = [u8];
                fn deref(&self) -> &Self::Target {
                    self.0.as_slice()
                }
            }
            impl<const N: usize> DerefMut for X<'_, N> {
                fn deref_mut(&mut self) -> &mut Self::Target {
                    self.0.as_slice_mut()
                }
            }
            impl<const N: usize> AsRef<[u8]> for X<'_, N> {
                fn as_ref(&self) -> &[u8] {
                    self.0.as_slice()
                }
            }
            impl<const N: usize> AsMut<[u8]> for X<'_, N> {
                fn as_mut(&mut self) -> &mut [u8] {
                    self.0.as_slice_mut()
                }
            }
            impl<const N: usize> Borrow<[u8]> for X<'_, N> {
                fn borrow(&self) -> &[u8] {
                    self.0.as_slice()
                }
            }
            impl<const N: usize> BorrowMut<[u8]> for X<'_, N> {
                fn borrow_mut(&mut self) -> &mut [u8] {
                    self.0.as_slice_mut()
                }
            }
            impl<'a, const N: usize> AsRead<'a> for X<'a, N> {}
            impl<'a, const N: usize> AsWrite<'a> for X<'a, N> {}
            let g = self.0.lock();
            g.set_writable();
            let x: X<N> = X(g);
            WriteGuard(Box::new(x))
        }

        fn into_read(self: Arc<Self>) -> BufRead {
            BufRead(self)
        }

        fn into_extend(self: Arc<Self>) -> BufExtend {
            BufExtend(self)
        }
    }

    impl<const N: usize> AsBufWriteSized<N> for BufWriteMemLockedSized<N> {
        fn write_lock_sized(&self) -> WriteGuardSized<'_, N> {
            struct X<'a, const N: usize>(MutexGuard<'a, safe::s3buf::S3Buf>);
            impl<const N: usize> Drop for X<'_, N> {
                fn drop(&mut self) {
                    self.0.set_no_access();
                }
            }
            impl<const N: usize> Deref for X<'_, N> {
                type Target = [u8; N];
                fn deref(&self) -> &Self::Target {
                    self.0.as_sized()
                }
            }
            impl<const N: usize> DerefMut for X<'_, N> {
                fn deref_mut(&mut self) -> &mut Self::Target {
                    self.0.as_sized_mut()
                }
            }
            impl<const N: usize> AsRef<[u8; N]> for X<'_, N> {
                fn as_ref(&self) -> &[u8; N] {
                    self.0.as_sized()
                }
            }
            impl<const N: usize> AsMut<[u8; N]> for X<'_, N> {
                fn as_mut(&mut self) -> &mut [u8; N] {
                    self.0.as_sized_mut()
                }
            }
            impl<const N: usize> Borrow<[u8; N]> for X<'_, N> {
                fn borrow(&self) -> &[u8; N] {
                    self.0.as_sized()
                }
            }
            impl<const N: usize> BorrowMut<[u8; N]> for X<'_, N> {
                fn borrow_mut(&mut self) -> &mut [u8; N] {
                    self.0.as_sized_mut()
                }
            }
            impl<'a, const N: usize> AsReadSized<'a, N> for X<'a, N> {}
            impl<'a, const N: usize> AsWriteSized<'a, N> for X<'a, N> {}
            let g = self.0.lock();
            g.set_writable();
            WriteGuardSized(Box::new(X(g)))
        }

        fn into_read_sized(self: Arc<Self>) -> BufReadSized<N> {
            BufReadSized(self)
        }

        fn into_write_unsized(self: Arc<Self>) -> BufWrite {
            BufWrite(self)
        }
    }

    impl<const N: usize> AsBufExtend for BufWriteMemLockedSized<N> {
        fn extend_lock(&self) -> ExtendGuard<'_> {
            write_guard_to_extend_guard(self.write_lock())
        }
    }
}
use buffer::*;