summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/Security/Cryptography/Core/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/Security/Cryptography/Core/mod.rs')
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/Security/Cryptography/Core/mod.rs68
1 files changed, 0 insertions, 68 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/Security/Cryptography/Core/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/Security/Cryptography/Core/mod.rs
deleted file mode 100644
index 1375a4ef0..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/Security/Cryptography/Core/mod.rs
+++ /dev/null
@@ -1,68 +0,0 @@
-#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)]
-#[link(name = "windows")]
-extern "system" {}
-pub type AsymmetricKeyAlgorithmProvider = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct Capi1KdfTargetAlgorithm(pub i32);
-impl Capi1KdfTargetAlgorithm {
- pub const NotAes: Self = Self(0i32);
- pub const Aes: Self = Self(1i32);
-}
-impl ::core::marker::Copy for Capi1KdfTargetAlgorithm {}
-impl ::core::clone::Clone for Capi1KdfTargetAlgorithm {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type CryptographicHash = *mut ::core::ffi::c_void;
-pub type CryptographicKey = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct CryptographicPadding(pub i32);
-impl CryptographicPadding {
- pub const None: Self = Self(0i32);
- pub const RsaOaep: Self = Self(1i32);
- pub const RsaPkcs1V15: Self = Self(2i32);
- pub const RsaPss: Self = Self(3i32);
-}
-impl ::core::marker::Copy for CryptographicPadding {}
-impl ::core::clone::Clone for CryptographicPadding {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct CryptographicPrivateKeyBlobType(pub i32);
-impl CryptographicPrivateKeyBlobType {
- pub const Pkcs8RawPrivateKeyInfo: Self = Self(0i32);
- pub const Pkcs1RsaPrivateKey: Self = Self(1i32);
- pub const BCryptPrivateKey: Self = Self(2i32);
- pub const Capi1PrivateKey: Self = Self(3i32);
- pub const BCryptEccFullPrivateKey: Self = Self(4i32);
-}
-impl ::core::marker::Copy for CryptographicPrivateKeyBlobType {}
-impl ::core::clone::Clone for CryptographicPrivateKeyBlobType {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct CryptographicPublicKeyBlobType(pub i32);
-impl CryptographicPublicKeyBlobType {
- pub const X509SubjectPublicKeyInfo: Self = Self(0i32);
- pub const Pkcs1RsaPublicKey: Self = Self(1i32);
- pub const BCryptPublicKey: Self = Self(2i32);
- pub const Capi1PublicKey: Self = Self(3i32);
- pub const BCryptEccFullPublicKey: Self = Self(4i32);
-}
-impl ::core::marker::Copy for CryptographicPublicKeyBlobType {}
-impl ::core::clone::Clone for CryptographicPublicKeyBlobType {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type EncryptedAndAuthenticatedData = *mut ::core::ffi::c_void;
-pub type HashAlgorithmProvider = *mut ::core::ffi::c_void;
-pub type KeyDerivationAlgorithmProvider = *mut ::core::ffi::c_void;
-pub type KeyDerivationParameters = *mut ::core::ffi::c_void;
-pub type MacAlgorithmProvider = *mut ::core::ffi::c_void;
-pub type SymmetricKeyAlgorithmProvider = *mut ::core::ffi::c_void;