vmgs/encrypt/
mod.rs

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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

#![cfg(with_encryption)]

macro_rules! activate {
    ($plat:ident) => {
        mod $plat;
        pub use $plat::vmgs_decrypt;
        pub use $plat::vmgs_encrypt;
    };
}

#[cfg(unix)]
cfg_if::cfg_if! {
    // HACK: ensure `encryption_ossl` is set first, so as to not break
    // `cargo test --all-features -p vmgs`.
    //
    // Yes, I know this is gross.
    if #[cfg(feature = "encryption_ossl")] {
        activate!(ossl);
    } else if #[cfg(feature = "encryption_win")] {
        compile_error!("cannot use encryption_win on unix!");
    } else {
        compile_error!("unreachable due to #![cfg(with_encryption)]");
    }
}

#[cfg(windows)]
cfg_if::cfg_if! {
    // HACK: ensure `encryption_win` is set first, so as to not break
    // `cargo test --all-features -p vmgs` on windows.
    //
    // Yes, I know this is gross.
    if #[cfg(feature = "encryption_win")] {
        activate!(win);
    } else if #[cfg(feature = "encryption_ossl")] {
        activate!(ossl);
    } else {
        compile_error!("unreachable due to #![cfg(with_encryption)]");
    }
}