ossl 1.5.1

OpenSSL version 3+ bindings to modern EVP APIs
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
// Copyright 2025 Simo Sorce
// See LICENSE.txt file for terms

//! This module provides a coherent abstraction over the OpenSSL key
//! deriveation apis

use std::ffi::{c_int, c_uint, CStr};

use crate::bindings::*;
use crate::digest::{digest_to_string, DigestAlg};
use crate::mac::{add_mac_alg_to_params, mac_to_digest_and_type, MacAlg};
use crate::pkey::{EvpPkey, EvpPkeyCtx};
use crate::{
    cstr, trace_ossl, Error, ErrorKind, OsslContext, OsslParam,
    OsslParamBuilder,
};

/// Wrapper around OpenSSL's `EVP_KDF_CTX`, managing its lifecycle.
#[derive(Debug)]
struct EvpKdfCtx {
    ptr: *mut EVP_KDF_CTX,
}

/// Methods for creating (from a named KDF) and accessing `EvpKdfCtx`.
impl EvpKdfCtx {
    /// Instantiates a new Kdf context
    fn new(ctx: &OsslContext, name: &CStr) -> Result<EvpKdfCtx, Error> {
        let arg = unsafe {
            EVP_KDF_fetch(ctx.ptr(), name.as_ptr(), std::ptr::null_mut())
        };
        if arg.is_null() {
            trace_ossl!("EVP_KDF_fetch()");
            return Err(Error::new(ErrorKind::NullPtr));
        }
        let ptr = unsafe { EVP_KDF_CTX_new(arg) };
        unsafe {
            EVP_KDF_free(arg);
        }
        if ptr.is_null() {
            trace_ossl!("EVP_KDF_CTX_new()");
            return Err(Error::new(ErrorKind::NullPtr));
        }
        Ok(EvpKdfCtx { ptr })
    }

    /// calls the derive function with the provided paramters
    fn derive(
        &mut self,
        params: &OsslParam,
        output: &mut [u8],
    ) -> Result<(), Error> {
        let ret = unsafe {
            EVP_KDF_derive(
                self.ptr,
                output.as_mut_ptr(),
                output.len(),
                params.as_ptr(),
            )
        };
        if ret != 1 {
            trace_ossl!("EVP_KDF_derive()");
            return Err(Error::new(ErrorKind::OsslError));
        }
        Ok(())
    }
}

impl Drop for EvpKdfCtx {
    fn drop(&mut self) {
        unsafe {
            EVP_KDF_CTX_free(self.ptr);
        }
    }
}

unsafe impl Send for EvpKdfCtx {}
unsafe impl Sync for EvpKdfCtx {}

/// HKDF Mode options
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum HkdfMode {
    ExtractAndExpand,
    ExtractOnly,
    ExpandOnly,
}

/// Higher level wrapper for HKDF Derive operation
#[derive(Debug)]
pub struct HkdfDerive<'a> {
    /// The OpenSSL KDF context (`EVP_KDF_CTX`).
    ctx: EvpKdfCtx,
    /// the derivation mode
    mode: c_int,
    /// the requested digest function
    digest: DigestAlg,
    /// input keying material
    key: Option<&'a [u8]>,
    /// optional salt value (a non-secret random value)
    salt: Option<&'a [u8]>,
    /// optional context and application specific information
    info: Option<&'a [u8]>,
}

impl<'a> HkdfDerive<'a> {
    /// Instantiates a new HKDF context
    pub fn new(
        ctx: &OsslContext,
        digest: DigestAlg,
    ) -> Result<HkdfDerive<'a>, Error> {
        Ok(HkdfDerive {
            ctx: EvpKdfCtx::new(ctx, cstr!(OSSL_KDF_NAME_HKDF))?,
            mode: EVP_KDF_HKDF_MODE_EXTRACT_AND_EXPAND as c_int,
            digest: digest,
            key: None,
            salt: None,
            info: None,
        })
    }

    /// Change HKDF mode
    pub fn set_mode(&mut self, mode: HkdfMode) {
        self.mode = match mode {
            HkdfMode::ExtractAndExpand => EVP_KDF_HKDF_MODE_EXTRACT_AND_EXPAND,
            HkdfMode::ExtractOnly => EVP_KDF_HKDF_MODE_EXTRACT_ONLY,
            HkdfMode::ExpandOnly => EVP_KDF_HKDF_MODE_EXPAND_ONLY,
        } as c_int;
    }

    /// Set the derivation key
    pub fn set_key(&mut self, key: &'a [u8]) {
        self.key = Some(key);
    }

    /// Set the salt (optional)
    pub fn set_salt(&mut self, salt: &'a [u8]) {
        self.salt = Some(salt);
    }

    /// Set additional Info (optional)
    pub fn set_info(&mut self, info: &'a [u8]) {
        self.info = Some(info);
    }

    /// Perform the derive operation based on the parameters set on the context
    /// The key parameter must have been set
    /// Returns the output in the provided output buffer
    pub fn derive(&mut self, output: &mut [u8]) -> Result<(), Error> {
        let mut params_builder = OsslParamBuilder::with_capacity(5);
        params_builder.zeroize = true;
        params_builder.add_const_c_string(
            cstr!(OSSL_KDF_PARAM_DIGEST),
            digest_to_string(self.digest),
        )?;
        params_builder.add_int(cstr!(OSSL_KDF_PARAM_MODE), &self.mode)?;

        match &self.key {
            Some(k) => {
                params_builder.add_octet_slice(cstr!(OSSL_KDF_PARAM_KEY), k)?
            }
            None => return Err(Error::new(ErrorKind::KeyError)),
        }
        match &self.salt {
            Some(s) => {
                params_builder.add_octet_slice(cstr!(OSSL_KDF_PARAM_SALT), s)?
            }
            None => (),
        }
        match &self.info {
            Some(i) => {
                params_builder.add_octet_slice(cstr!(OSSL_KDF_PARAM_INFO), i)?
            }
            None => (),
        }
        let params = params_builder.finalize();

        self.ctx.derive(&params, output)
    }
}

/// Higher level wrapper for Pbkdf2 Derive operation
#[derive(Debug)]
pub struct Pbkdf2Derive<'a> {
    /// The OpenSSL KDF context (`EVP_KDF_CTX`).
    ctx: EvpKdfCtx,
    /// The digest used
    digest: DigestAlg,
    /// number of desired iterations
    iter: c_uint,
    /// the password to derive from
    password: Option<&'a [u8]>,
    /// an optional salt
    salt: Option<&'a [u8]>,
}

impl<'a> Pbkdf2Derive<'a> {
    /// Instantiates a new Pbkdf2 context
    pub fn new(
        ctx: &OsslContext,
        digest: DigestAlg,
    ) -> Result<Pbkdf2Derive<'a>, Error> {
        Ok(Pbkdf2Derive {
            ctx: EvpKdfCtx::new(ctx, cstr!(OSSL_KDF_NAME_PBKDF2))?,
            digest: digest,
            iter: 10000,
            password: None,
            salt: None,
        })
    }

    /// Set the desired iterations count
    pub fn set_iterations(&mut self, iterations: usize) {
        self.iter = c_uint::try_from(iterations).unwrap();
    }

    /// Set the password
    pub fn set_password(&mut self, password: &'a [u8]) {
        self.password = Some(password);
    }

    /// Set the salt
    pub fn set_salt(&mut self, salt: &'a [u8]) {
        self.salt = Some(salt);
    }

    /// Perform the derive operation based on the parameters set on the context
    /// The key parameter must have been set
    /// Returns the output in the provided output buffer
    pub fn derive(&mut self, output: &mut [u8]) -> Result<(), Error> {
        let mut params_builder = OsslParamBuilder::with_capacity(4);
        params_builder.zeroize = true;
        params_builder.add_const_c_string(
            cstr!(OSSL_KDF_PARAM_DIGEST),
            digest_to_string(self.digest),
        )?;
        params_builder.add_uint(cstr!(OSSL_KDF_PARAM_ITER), &self.iter)?;
        match &self.password {
            Some(p) => params_builder
                .add_octet_slice(cstr!(OSSL_KDF_PARAM_PASSWORD), p)?,
            None => return Err(Error::new(ErrorKind::KeyError)),
        }
        match &self.salt {
            Some(s) => {
                params_builder.add_octet_slice(cstr!(OSSL_KDF_PARAM_SALT), s)?
            }
            None => (),
        }
        let params = params_builder.finalize();

        self.ctx.derive(&params, output)
    }
}

/// KBKDF Mode options
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum KbkdfMode {
    Counter,
    Feedback,
}

/// Allowed Counter length values
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum KbkdfCounterLen {
    Len8b,
    Len16b,
    Len24b,
    Len32b,
}

/// Higher level wrapper for KBKDF Derive operation
#[derive(Debug)]
pub struct KbkdfDerive<'a> {
    /// The OpenSSL KDF context (`EVP_KDF_CTX`).
    ctx: EvpKdfCtx,
    /// The kind of Mac
    mac: MacAlg,
    /// The desired mode
    mode: KbkdfMode,
    /// The counter len (only 8, 16, 24, 32 supported)
    counter_len: c_int,
    /// Whether to add a separator (only 0 or 1)
    separator: c_int,
    /// Whether the Fixed Input Data length is added (only 0 or 1)
    fixed_len: c_int,
    /// The derivation key
    key: Option<&'a [u8]>,
    /// Info (context) string
    info: Option<&'a [u8]>,
    /// Salt (label) string
    salt: Option<&'a [u8]>,
    /// Seed for feedback mode
    seed: Option<&'a [u8]>,
}

impl<'a> KbkdfDerive<'a> {
    /// Instantiates a new HKDF context
    pub fn new(
        ctx: &OsslContext,
        mac: MacAlg,
        mode: KbkdfMode,
    ) -> Result<KbkdfDerive<'a>, Error> {
        Ok(KbkdfDerive {
            ctx: EvpKdfCtx::new(ctx, cstr!(OSSL_KDF_NAME_KBKDF))?,
            mac: mac,
            mode: mode,
            counter_len: 32,
            separator: 1,
            fixed_len: 1,
            key: None,
            info: None,
            salt: None,
            seed: None,
        })
    }

    /// Set the derivation key
    pub fn set_key(&mut self, key: &'a [u8]) {
        self.key = Some(key);
    }

    /// Set the counter length in bits
    pub fn set_counter_len(
        &mut self,
        bits: KbkdfCounterLen,
    ) -> Result<(), Error> {
        if !cfg!(ossl_v320) {
            return Err(Error::new(ErrorKind::WrapperError));
        }
        self.counter_len = match bits {
            KbkdfCounterLen::Len8b => 8,
            KbkdfCounterLen::Len16b => 16,
            KbkdfCounterLen::Len24b => 24,
            KbkdfCounterLen::Len32b => 32,
        };
        Ok(())
    }

    /// Set whether a separator byte should be used
    pub fn use_separator(&mut self, b: bool) {
        self.separator = match b {
            true => 1,
            false => 0,
        }
    }

    /// Set whether the Counter length should be added at all
    pub fn use_fixed_len(&mut self, b: bool) {
        self.fixed_len = match b {
            true => 1,
            false => 0,
        }
    }

    /// Set info (context)
    pub fn set_info(&mut self, info: &'a [u8]) {
        self.info = Some(info);
    }

    /// Set salt (label)
    pub fn set_salt(&mut self, salt: &'a [u8]) {
        self.salt = Some(salt);
    }

    /// Set seed
    pub fn set_seed(&mut self, seed: &'a [u8]) {
        self.seed = Some(seed);
    }

    /// Perform the derive operation based on the parameters set on the context
    /// The key parameter must have been set
    /// Returns the output in the provided output buffer
    pub fn derive(&mut self, output: &mut [u8]) -> Result<(), Error> {
        let mut params_builder = OsslParamBuilder::with_capacity(10);
        params_builder.zeroize = true;
        let mac_type = add_mac_alg_to_params(
            &mut params_builder,
            self.mac,
            cstr!(OSSL_KDF_PARAM_DIGEST),
            cstr!(OSSL_KDF_PARAM_CIPHER),
        )?;
        params_builder
            .add_const_c_string(cstr!(OSSL_KDF_PARAM_MAC), mac_type)?;
        params_builder.add_const_c_string(
            cstr!(OSSL_KDF_PARAM_MODE),
            match self.mode {
                KbkdfMode::Counter => c"counter",
                KbkdfMode::Feedback => c"feedback",
            },
        )?;

        #[cfg(ossl_v320)]
        params_builder
            .add_int(cstr!(OSSL_KDF_PARAM_KBKDF_R), &self.counter_len)?;

        params_builder.add_int(
            cstr!(OSSL_KDF_PARAM_KBKDF_USE_SEPARATOR),
            &self.separator,
        )?;
        params_builder
            .add_int(cstr!(OSSL_KDF_PARAM_KBKDF_USE_L), &self.fixed_len)?;

        match &self.key {
            Some(k) => {
                params_builder.add_octet_slice(cstr!(OSSL_KDF_PARAM_KEY), k)?
            }
            None => return Err(Error::new(ErrorKind::KeyError)),
        }
        match &self.info {
            Some(i) => {
                params_builder.add_octet_slice(cstr!(OSSL_KDF_PARAM_INFO), i)?
            }
            None => (),
        }
        match &self.salt {
            Some(s) => {
                params_builder.add_octet_slice(cstr!(OSSL_KDF_PARAM_SALT), s)?
            }
            None => (),
        }
        match &self.seed {
            Some(s) => {
                params_builder.add_octet_slice(cstr!(OSSL_KDF_PARAM_SEED), s)?
            }
            None => (),
        }
        let params = params_builder.finalize();

        self.ctx.derive(&params, output)
    }
}

/// SshKDF derivation purpose
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum SshKdfPurpose {
    InitialIVClientToServer,
    InitialIVServerToClient,
    EncryptioKeyClientToServer,
    EncryptioKeyServerToClient,
    IntegrityKeyClientToServer,
    IntegrityKeyServerToClient,
}

/// Higher level wrapper for SSHKDF Derive operation
#[derive(Debug)]
pub struct SshkdfDerive<'a> {
    /// The OpenSSL KDF context (`EVP_KDF_CTX`).
    ctx: EvpKdfCtx,
    /// The purpose determines what type is generated
    purpose: &'static CStr,
    /// The digest function
    digest: DigestAlg,
    /// The key to derive from
    key: Option<&'a [u8]>,
    /// The SSH Exchange Hash
    hash: Option<&'a [u8]>,
    /// The SSH session id
    session: Option<&'a [u8]>,
}

impl<'a> SshkdfDerive<'a> {
    /// Instantiates a new SSHKDF context
    pub fn new(
        ctx: &OsslContext,
        digest: DigestAlg,
    ) -> Result<SshkdfDerive<'a>, Error> {
        Ok(SshkdfDerive {
            ctx: EvpKdfCtx::new(ctx, cstr!(OSSL_KDF_NAME_SSHKDF))?,
            digest: digest,
            purpose: c"A",
            key: None,
            hash: None,
            session: None,
        })
    }

    /// Sets the SSHKDF type of key we want (purpose)
    pub fn set_purpose(&mut self, purpose: SshKdfPurpose) {
        self.purpose = match purpose {
            SshKdfPurpose::InitialIVClientToServer => c"A",
            SshKdfPurpose::InitialIVServerToClient => c"B",
            SshKdfPurpose::EncryptioKeyClientToServer => c"C",
            SshKdfPurpose::EncryptioKeyServerToClient => c"D",
            SshKdfPurpose::IntegrityKeyClientToServer => c"E",
            SshKdfPurpose::IntegrityKeyServerToClient => c"F",
        }
    }

    /// Set the derivation key
    pub fn set_key(&mut self, key: &'a [u8]) {
        self.key = Some(key);
    }

    /// Set the exchange hash
    pub fn set_hash(&mut self, hash: &'a [u8]) {
        self.hash = Some(hash);
    }

    /// Set session id
    pub fn set_session(&mut self, session: &'a [u8]) {
        self.session = Some(session);
    }

    /// Perform the derive operation based on the parameters set on the context
    /// The key parameter must have been set
    /// Returns the output in the provided output buffer
    pub fn derive(&mut self, output: &mut [u8]) -> Result<(), Error> {
        let mut params_builder = OsslParamBuilder::with_capacity(5);
        params_builder.zeroize = true;
        params_builder.add_const_c_string(
            cstr!(OSSL_KDF_PARAM_DIGEST),
            digest_to_string(self.digest),
        )?;

        match &self.key {
            Some(k) => {
                params_builder.add_octet_slice(cstr!(OSSL_KDF_PARAM_KEY), k)?
            }
            None => return Err(Error::new(ErrorKind::KeyError)),
        }
        match &self.hash {
            Some(h) => params_builder
                .add_octet_slice(cstr!(OSSL_KDF_PARAM_SSHKDF_XCGHASH), h)?,
            None => (),
        }
        params_builder.add_const_c_string(
            cstr!(OSSL_KDF_PARAM_SSHKDF_TYPE),
            self.purpose,
        )?;
        match &self.session {
            Some(s) => params_builder
                .add_octet_slice(cstr!(OSSL_KDF_PARAM_SSHKDF_SESSION_ID), s)?,
            None => (),
        }
        let params = params_builder.finalize();

        self.ctx.derive(&params, output)
    }
}

/// Higher level wrapper for One Step KDF Derive operation as
/// defined in SP-800 56C
///
/// The OpenSSL implementation is called "SSKDF"
#[derive(Debug)]
pub struct OneStepKdfDerive<'a> {
    /// The OpenSSL KDF context (`EVP_KDF_CTX`).
    ctx: EvpKdfCtx,
    /// The digest function
    digest: DigestAlg,
    /// The (Optional) Mac type
    mac: Option<&'static CStr>,
    /// The key to derive from
    key: Option<&'a [u8]>,
    /// optional salt value (a non-secret random value)
    salt: Option<&'a [u8]>,
    /// Optional Context Info
    info: Option<&'a [u8]>,
}

impl<'a> OneStepKdfDerive<'a> {
    /// Instantiates a new OneStepKeyDerive context
    /// Note that digest and mac are mutually exclusive, but
    /// one or the other must be provided.
    pub fn new(
        ctx: &OsslContext,
        mac: Option<MacAlg>,
        digest: Option<DigestAlg>,
    ) -> Result<OneStepKdfDerive<'a>, Error> {
        let mut mac_type: Option<&'static CStr> = None;
        let alg = if let Some(m) = mac {
            if digest.is_some() {
                return Err(Error::new(ErrorKind::WrapperError));
            }
            let (a, t) = mac_to_digest_and_type(m)?;
            mac_type = Some(t);
            a
        } else if let Some(a) = digest {
            if mac.is_some() {
                return Err(Error::new(ErrorKind::WrapperError));
            }
            a
        } else {
            return Err(Error::new(ErrorKind::NullPtr));
        };

        Ok(OneStepKdfDerive {
            ctx: EvpKdfCtx::new(ctx, cstr!(OSSL_KDF_NAME_SSKDF))?,
            digest: alg,
            mac: mac_type,
            key: None,
            salt: None,
            info: None,
        })
    }

    /// Set the derivation key
    pub fn set_key(&mut self, key: &'a [u8]) {
        self.key = Some(key);
    }

    /// Set the salt (optional)
    /// Note: salt is ignored when a Mac option is not present
    pub fn set_salt(&mut self, salt: &'a [u8]) {
        self.salt = Some(salt);
    }

    /// Set info (context)
    pub fn set_info(&mut self, info: &'a [u8]) {
        self.info = Some(info);
    }

    /// Perform the derive operation based on the parameters set on the context
    /// The key parameter must have been set
    /// Returns the output in the provided output buffer
    pub fn derive(&mut self, output: &mut [u8]) -> Result<(), Error> {
        let mut params_builder = OsslParamBuilder::with_capacity(5);
        params_builder.zeroize = true;
        params_builder.add_const_c_string(
            cstr!(OSSL_KDF_PARAM_DIGEST),
            digest_to_string(self.digest),
        )?;
        match &self.key {
            Some(key) => params_builder
                .add_octet_slice(cstr!(OSSL_KDF_PARAM_KEY), key)?,
            None => return Err(Error::new(ErrorKind::KeyError)),
        }
        if let Some(mac) = self.mac {
            params_builder
                .add_const_c_string(cstr!(OSSL_KDF_PARAM_MAC), mac)?;
        }
        if let Some(salt) = self.salt {
            params_builder.add_octet_slice(cstr!(OSSL_KDF_PARAM_SALT), salt)?;
        }
        if let Some(info) = &self.info {
            params_builder.add_octet_slice(cstr!(OSSL_KDF_PARAM_INFO), info)?;
        }

        let params = params_builder.finalize();

        self.ctx.derive(&params, output)
    }
}

/// Higher level wrapper for The X9.63 Key Derive operation as
/// defined in ANSI-X9.63
///
/// The OpenSSL implementation is called "X963KDF"
#[derive(Debug)]
pub struct X963KdfDerive<'a> {
    /// The OpenSSL KDF context (`EVP_KDF_CTX`).
    ctx: EvpKdfCtx,
    /// The digest function
    digest: DigestAlg,
    /// The key to derive from
    key: Option<&'a [u8]>,
    /// Optional Context Info
    info: Option<&'a [u8]>,
}

impl<'a> X963KdfDerive<'a> {
    /// Instantiates a new X9.63 Key Derive context
    pub fn new(
        ctx: &OsslContext,
        digest: DigestAlg,
    ) -> Result<X963KdfDerive<'a>, Error> {
        Ok(X963KdfDerive {
            ctx: EvpKdfCtx::new(ctx, cstr!(OSSL_KDF_NAME_X963KDF))?,
            digest: digest,
            key: None,
            info: None,
        })
    }

    /// Set the derivation key
    pub fn set_key(&mut self, key: &'a [u8]) {
        self.key = Some(key);
    }

    /// Set info (context)
    pub fn set_info(&mut self, info: &'a [u8]) {
        self.info = Some(info);
    }

    /// Perform the derive operation based on the parameters set on the context
    /// The key parameter must have been set
    /// Returns the output in the provided output buffer
    pub fn derive(&mut self, output: &mut [u8]) -> Result<(), Error> {
        let mut params_builder = OsslParamBuilder::with_capacity(3);
        params_builder.zeroize = true;
        params_builder.add_const_c_string(
            cstr!(OSSL_KDF_PARAM_DIGEST),
            digest_to_string(self.digest),
        )?;
        match &self.key {
            Some(key) => params_builder
                .add_octet_slice(cstr!(OSSL_KDF_PARAM_KEY), key)?,
            None => return Err(Error::new(ErrorKind::KeyError)),
        }
        if let Some(info) = &self.info {
            params_builder.add_octet_slice(cstr!(OSSL_KDF_PARAM_INFO), info)?;
        }

        let params = params_builder.finalize();

        self.ctx.derive(&params, output)
    }
}

/// Higher level wrapper for ECDH Derive operation
#[derive(Debug)]
pub struct EcdhDerive<'a> {
    /// The OpenSSL PKEY context (`EVP_PKEY_CTX`).
    ctx: EvpPkeyCtx,
    /// Cofactor mode (on, off, or default)
    mode: Option<c_int>,
    /// The Kdf Type, either None or "X963KDF"
    kdf_type: Option<&'static CStr>,
    /// Desired digest
    digest: Option<DigestAlg>,
    /// User Key Material
    ukm: Option<&'a [u8]>,
    /// Requested output size
    outlen: c_uint,
}

impl<'a> EcdhDerive<'a> {
    pub fn new(
        ctx: &OsslContext,
        privkey: &mut EvpPkey,
    ) -> Result<EcdhDerive<'a>, Error> {
        let mut pctx = EcdhDerive {
            ctx: privkey.new_ctx(ctx)?,
            mode: None,
            kdf_type: None,
            digest: None,
            ukm: None,
            outlen: 0,
        };
        let ret = unsafe { EVP_PKEY_derive_init(pctx.ctx.as_mut_ptr()) };
        if ret != 1 {
            trace_ossl!("EVP_PKEY_derive_init()");
            return Err(Error::new(ErrorKind::OsslError));
        }
        Ok(pctx)
    }

    pub fn set_cofactor_mode(&mut self, mode: Option<bool>) {
        self.mode = match mode {
            Some(true) => Some(1),
            Some(false) => Some(0),
            None => Some(-1),
        }
    }

    pub fn set_x963_kdf_type(&mut self, b: bool) {
        self.kdf_type = if b { Some(c"X963KDF") } else { None }
    }

    pub fn set_digest(&mut self, digest: DigestAlg) {
        self.digest = Some(digest);
    }

    pub fn set_ukm(&mut self, ukm: &'a [u8]) {
        self.ukm = Some(ukm);
    }

    pub fn set_outlen(&mut self, outlen: usize) -> Result<(), Error> {
        self.outlen = c_uint::try_from(outlen)?;
        Ok(())
    }

    pub fn derive(
        &mut self,
        peer: &mut EvpPkey,
        output: &mut [u8],
    ) -> Result<usize, Error> {
        let mut params_builder = OsslParamBuilder::with_capacity(5);
        params_builder.zeroize = true;
        if let Some(mode) = &self.mode {
            params_builder.add_int(
                cstr!(OSSL_EXCHANGE_PARAM_EC_ECDH_COFACTOR_MODE),
                mode,
            )?;
        }
        if let Some(kdf_type) = self.kdf_type {
            params_builder.add_const_c_string(
                cstr!(OSSL_EXCHANGE_PARAM_KDF_TYPE),
                kdf_type,
            )?;
        }
        if let Some(alg) = self.digest {
            params_builder.add_const_c_string(
                cstr!(OSSL_EXCHANGE_PARAM_KDF_DIGEST),
                digest_to_string(alg),
            )?;
        }
        if let Some(ukm) = self.ukm {
            params_builder
                .add_octet_slice(cstr!(OSSL_EXCHANGE_PARAM_KDF_UKM), ukm)?;
        }
        if self.outlen != 0 {
            params_builder.add_uint(
                cstr!(OSSL_EXCHANGE_PARAM_KDF_OUTLEN),
                &self.outlen,
            )?;
        }
        let params = params_builder.finalize();

        if params.len() > 0 {
            let ret = unsafe {
                EVP_PKEY_CTX_set_params(self.ctx.as_mut_ptr(), params.as_ptr())
            };
            if ret != 1 {
                trace_ossl!("EVP_PKEY_CTX_set_params()");
                return Err(Error::new(ErrorKind::OsslError));
            }
        }

        let ret = unsafe {
            EVP_PKEY_derive_set_peer(self.ctx.as_mut_ptr(), peer.as_mut_ptr())
        };
        if ret != 1 {
            trace_ossl!("EVP_PKEY_derive_set_peer()");
            return Err(Error::new(ErrorKind::KeyError));
        }

        let mut outlen = 0usize;
        let ret = unsafe {
            EVP_PKEY_derive(
                self.ctx.as_mut_ptr(),
                std::ptr::null_mut(),
                &mut outlen,
            )
        };
        if ret != 1 {
            trace_ossl!("EVP_PKEY_derive()");
            return Err(Error::new(ErrorKind::OsslError));
        }

        let mut outvec = Vec::new();
        let outbuf_ptr = if output.len() >= outlen {
            output.as_mut_ptr()
        } else {
            outvec.resize(outlen, 0);
            outvec.as_mut_ptr()
        };

        let ret = unsafe {
            EVP_PKEY_derive(self.ctx.as_mut_ptr(), outbuf_ptr, &mut outlen)
        };
        if ret != 1 {
            trace_ossl!("EVP_PKEY_derive()");
            return Err(Error::new(ErrorKind::OsslError));
        }

        let len = if outlen < output.len() {
            outlen
        } else {
            output.len()
        };
        if outvec.len() > 0 {
            output[0..len].copy_from_slice(&outvec[(outvec.len() - len)..]);
        }

        Ok(len)
    }
}

/// Higher level wrapper for FFDH Derive operation
#[derive(Debug)]
pub struct FfdhDerive {
    /// The OpenSSL PKEY context (`EVP_PKEY_CTX`).
    ctx: EvpPkeyCtx,
    /// Requested output size
    outlen: c_uint,
}

impl FfdhDerive {
    /// Initializes a new FFDH derive operation
    pub fn new(
        ctx: &OsslContext,
        privkey: &mut EvpPkey,
    ) -> Result<FfdhDerive, Error> {
        let mut pctx = FfdhDerive {
            ctx: privkey.new_ctx(ctx)?,
            outlen: 0,
        };
        let ret = unsafe { EVP_PKEY_derive_init(pctx.ctx.as_mut_ptr()) };
        if ret != 1 {
            trace_ossl!("EVP_PKEY_derive_init()");
            return Err(Error::new(ErrorKind::OsslError));
        }
        Ok(pctx)
    }

    /// Set the requested shared secret output length
    pub fn set_outlen(&mut self, outlen: usize) -> Result<(), Error> {
        self.outlen = c_uint::try_from(outlen)?;
        Ok(())
    }

    /// Perform derivation, takes the peer public key and an output buffer as
    /// a mutable slice which will be filled with the shared secret.
    /// Returns the length of the part of the buffer that was used.
    pub fn derive(
        &mut self,
        peer: &mut EvpPkey,
        output: &mut [u8],
    ) -> Result<usize, Error> {
        let ret = unsafe {
            EVP_PKEY_derive_set_peer(self.ctx.as_mut_ptr(), peer.as_mut_ptr())
        };
        if ret != 1 {
            trace_ossl!("EVP_PKEY_derive_set_peer()");
            return Err(Error::new(ErrorKind::KeyError));
        }

        let mut outlen = 0usize;
        let ret = unsafe {
            EVP_PKEY_derive(
                self.ctx.as_mut_ptr(),
                std::ptr::null_mut(),
                &mut outlen,
            )
        };
        if ret != 1 {
            trace_ossl!("EVP_PKEY_derive()");
            return Err(Error::new(ErrorKind::OsslError));
        }

        let mut outvec = Vec::new();
        let outbuf_ptr = if output.len() >= outlen {
            output.as_mut_ptr()
        } else {
            outvec.resize(outlen, 0);
            outvec.as_mut_ptr()
        };

        let ret = unsafe {
            EVP_PKEY_derive(self.ctx.as_mut_ptr(), outbuf_ptr, &mut outlen)
        };
        if ret != 1 {
            trace_ossl!("EVP_PKEY_derive()");
            return Err(Error::new(ErrorKind::OsslError));
        }

        let len = if outlen < output.len() {
            outlen
        } else {
            output.len()
        };
        if outvec.len() > 0 {
            output[0..len].copy_from_slice(&outvec[(outvec.len() - len)..]);
        }

        Ok(len)
    }
}