Alexandre Julliard pushed to branch master at wine / wine
Commits:
6c994f89 by Dmitry Timoshkov at 2025-01-29T13:59:07+01:00
crypt32: Add support for CryptMsgControl(CMSG_CTRL_ADD_CERT) to a being decoded message.
Signed-off-by: Dmitry Timoshkov <dmitry(a)baikal.ru>
- - - - -
57a2ec6f by Dmitry Timoshkov at 2025-01-29T13:59:07+01:00
crypt32: Add szOID_APPLICATION_CERT_POLICIES to the list of supported critical extensions.
Signed-off-by: Dmitry Timoshkov <dmitry(a)baikal.ru>
- - - - -
47a3e6ff by Dmitry Timoshkov at 2025-01-29T13:59:07+01:00
crypt32: Ignore CRYPT_OID_INFO_PUBKEY_ENCRYPT_KEY_FLAG and CRYPT_OID_INFO_PUBKEY_SIGN_KEY_FLAG in CryptFindOIDInfo().
Signed-off-by: Dmitry Timoshkov <dmitry(a)baikal.ru>
- - - - -
d6ad9ceb by Dmitry Timoshkov at 2025-01-29T13:59:08+01:00
crypt32: Add support for CryptMsgControl(CMSG_CTRL_ADD_SIGNER_UNAUTH_ATTR) to a being decoded message.
Signed-off-by: Dmitry Timoshkov <dmitry(a)baikal.ru>
- - - - -
a8ed8ff3 by Dmitry Timoshkov at 2025-01-29T13:59:08+01:00
crypt32: Add support for CryptMsgGetParam(CMSG_ENCRYPTED_DIGEST) to a being decoded signed message.
Signed-off-by: Dmitry Timoshkov <dmitry(a)baikal.ru>
- - - - -
57195800 by Dmitry Timoshkov at 2025-01-29T13:59:08+01:00
crypt32: Add support for CryptMsgControl(CMSG_CTRL_DEL_CERT) to a being decoded message.
Signed-off-by: Dmitry Timoshkov <dmitry(a)baikal.ru>
- - - - -
1a0e83d1 by Dmitry Timoshkov at 2025-01-29T13:59:08+01:00
crypt32: CertVerifyCertificateChainPolicy() extensions are registered under "EncodingType 0" key.
Signed-off-by: Dmitry Timoshkov <dmitry(a)baikal.ru>
- - - - -
9b7d766a by Dmitry Timoshkov at 2025-01-29T13:59:08+01:00
crypt32: Do not reject key usage data longer than 1 byte.
At least there are certificates with 2 and 4 bytes of key usage data.
Signed-off-by: Dmitry Timoshkov <dmitry(a)baikal.ru>
- - - - -
6 changed files:
- dlls/crypt32/chain.c
- dlls/crypt32/decode.c
- dlls/crypt32/encode.c
- dlls/crypt32/msg.c
- dlls/crypt32/oid.c
- include/wincrypt.h
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/d037336ef87e53edfc409819ad001…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/d037336ef87e53edfc409819ad001…
You're receiving this email because of your account on gitlab.winehq.org.
Henri Verbeet pushed to branch master at wine / vkd3d
Commits:
75ef230f by Elizabeth Figura at 2025-01-29T17:58:00+01:00
tests: Add some stress tests for scope and variable definition.
- - - - -
2863d86b by Elizabeth Figura at 2025-01-29T17:58:00+01:00
vkd3d-shader/hlsl: Do not define a separate scope for function parameters.
Remove the no longer needed code to detect redefinition in this case.
- - - - -
e40d4a0e by Elizabeth Figura at 2025-01-29T17:58:00+01:00
vkd3d-shader/hlsl: Factor out the error message into hlsl_add_var().
- - - - -
fbd17266 by Elizabeth Figura at 2025-01-29T17:58:00+01:00
vkd3d-shader/hlsl: Do not abort on variable redefinition.
There is no harm in defining two variables with the same name.
- - - - -
f1412e42 by Elizabeth Figura at 2025-01-29T17:58:00+01:00
vkd3d-shader/hlsl: Handle error instructions in add_shader_compilation().
- - - - -
5 changed files:
- Makefile.am
- libs/vkd3d-shader/hlsl.c
- libs/vkd3d-shader/hlsl.h
- libs/vkd3d-shader/hlsl.y
- + tests/hlsl/scope.shader_test
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/7d1e4a40b16037d7d3019790e52b…
--
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/7d1e4a40b16037d7d3019790e52b…
You're receiving this email because of your account on gitlab.winehq.org.
Henri Verbeet pushed to branch master at wine / vkd3d
Commits:
a77dca52 by Shaun Ren at 2025-01-29T17:36:58+01:00
vkd3d-shader/hlsl: Forbid declaring const variables with no initializer.
- - - - -
32c081ba by Shaun Ren at 2025-01-29T17:36:58+01:00
tests/hlsl: Test invalid const variables with no initializer.
- - - - -
f4d5e05d by Shaun Ren at 2025-01-29T17:41:51+01:00
vkd3d-shader/hlsl: Parse InputPatch and OutputPatch objects.
- - - - -
f064a402 by Shaun Ren at 2025-01-29T17:45:46+01:00
vkd3d-shader/hlsl: Validate and record InputPatch/OutputPatch types.
- - - - -
8a5559ab by Shaun Ren at 2025-01-29T17:51:18+01:00
tests/hlsl: Test the syntax of InputPatch/OutputPatch variables.
- - - - -
73183d33 by Shaun Ren at 2025-01-29T17:52:49+01:00
tests/hlsl: Test passthrough hull shader control point function.
- - - - -
7d1e4a40 by Shaun Ren at 2025-01-29T17:53:26+01:00
tests/hlsl: Test hull shader control point function output parameters.
- - - - -
11 changed files:
- Makefile.am
- libs/vkd3d-shader/hlsl.c
- libs/vkd3d-shader/hlsl.h
- libs/vkd3d-shader/hlsl.l
- libs/vkd3d-shader/hlsl.y
- libs/vkd3d-shader/hlsl_codegen.c
- libs/vkd3d-shader/vkd3d_shader_private.h
- tests/hlsl/hull-shader-syntax.shader_test
- tests/hlsl/invalid.shader_test
- + tests/hlsl/patch-syntax.shader_test
- tests/hlsl/tessellation.shader_test
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/25c6d16b459278d63c3693fd4685…
--
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/25c6d16b459278d63c3693fd4685…
You're receiving this email because of your account on gitlab.winehq.org.