Module: wine Branch: master Commit: 45b823114ce89ee56a36705a77f4f6bb9761dde4 URL: https://gitlab.winehq.org/wine/wine/-/commit/45b823114ce89ee56a36705a77f4f6b...
Author: Hans Leidekker hans@codeweavers.com Date: Tue Dec 13 09:30:20 2022 +0100
bcrypt: Add PSS compatibility defines.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54121
---
dlls/bcrypt/gnutls.c | 4 ++++ 1 file changed, 4 insertions(+)
diff --git a/dlls/bcrypt/gnutls.c b/dlls/bcrypt/gnutls.c index 9425cccd066..70f55a6e8d6 100644 --- a/dlls/bcrypt/gnutls.c +++ b/dlls/bcrypt/gnutls.c @@ -73,6 +73,10 @@ typedef enum #define GNUTLS_CIPHER_AES_128_CFB8 29 #define GNUTLS_CIPHER_AES_192_CFB8 30 #define GNUTLS_CIPHER_AES_256_CFB8 31 + +#define GNUTLS_PK_RSA_PSS 6 +#define GNUTLS_PRIVKEY_SIGN_FLAG_RSA_PSS (1 << 7) +typedef struct gnutls_x509_spki_st *gnutls_x509_spki_t; #endif
union key_data