l3codeca.acm: Avoid mpg123 functions with suffix.
[wine.git] / dlls / ncrypt / ncrypt_internal.h
blob0ab20de14adf88a20087e67ba85fb550da329071
1 /*
2 * Copyright (c) 2021 Santino Mazza
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include <bcrypt.h>
21 enum algid
23 /* symmetric */
24 AES,
25 /* asymmetric */
26 RSA,
27 DSA,
28 ECDSA,
31 struct key
33 enum algid algid;
34 BCRYPT_ALG_HANDLE bcrypt_alg;
35 BCRYPT_KEY_HANDLE bcrypt_key;
38 struct storage_provider
42 enum object_type
44 KEY,
45 STORAGE_PROVIDER,
48 struct object_property
50 WCHAR *key;
51 DWORD value_size;
52 void *value;
55 struct object
57 enum object_type type;
58 DWORD num_properties;
59 struct object_property *properties;
60 union
62 struct key key;
63 struct storage_provider storage_provider;