Skip to content

Commit

Permalink
Move tlskdf impl to native directory
Browse files Browse the repository at this point in the history
All implementations that are natively built sould be in the src/native
directory, so that it is easy to figure out what is where.
The main faile should only contain general mechanism registration
functions that can source the actual implementation based on feature
flags.

Signed-off-by: Simo Sorce <simo@redhat.com>
  • Loading branch information
simo5 committed Feb 12, 2025
1 parent 2ec5913 commit bd54b96
Show file tree
Hide file tree
Showing 5 changed files with 889 additions and 870 deletions.
2 changes: 2 additions & 0 deletions src/native/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ pub mod pbkdf2;
pub mod sp800_108;
#[cfg(all(feature = "sshkdf", not(feature = "fips")))]
pub mod sshkdf;
#[cfg(feature = "tlskdf")]
pub mod tlskdf;
Loading

0 comments on commit bd54b96

Please sign in to comment.