-
Notifications
You must be signed in to change notification settings - Fork 235
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Are there plans to support OpenSSL 3.x when it becomes available? #135
Comments
From the openssl.org official 3.0.0 design documentation:
Assuming that it is mostly the API used (and not the underlying architecture, which is subject to frequent change) for this project, the transition to support OpenSSL 3.0.0 should be relatively smooth :) |
When trying to compile against openssl-3.0.0-alpha6, I get these errors: GOROOT=/usr/local/go #gosetup project/vendor/github.com/spacemonkeygo/opensslcgo-gcc-prolog: In function ‘_cgo_69fd816ec320_Cfunc_ENGINE_by_id’: define DECLARE_DEPRECATED(f) f attribute ((deprecated));
/home/eric/dev/openssl3.0-build/include/openssl/engine.h:327:1: note: in expansion of macro ‘DEPRECATEDIN_3_0’ define DECLARE_DEPRECATED(f) f attribute ((deprecated));
/home/eric/dev/openssl3.0-build/include/openssl/engine.h:588:1: note: in expansion of macro ‘DEPRECATEDIN_3_0’ define DECLARE_DEPRECATED(f) f attribute ((deprecated));
/home/eric/dev/openssl3.0-build/include/openssl/engine.h:474:1: note: in expansion of macro ‘DEPRECATEDIN_3_0’ define DECLARE_DEPRECATED(f) f attribute ((deprecated));
/home/eric/dev/openssl3.0-build/include/openssl/engine.h:582:1: note: in expansion of macro ‘DEPRECATEDIN_3_0’ project/vendor/github.com/spacemonkeygo/opensslcgo-gcc-prolog: In function ‘_cgo_69fd816ec320_Cfunc_ERR_func_error_string’: define DECLARE_DEPRECATED(f) f attribute ((deprecated));
/home/eric/dev/openssl3.0-build/include/openssl/err.h:412:1: note: in expansion of macro ‘DEPRECATEDIN_3_0’ project/vendor/github.com/spacemonkeygo/opensslcgo-gcc-prolog: In function ‘_cgo_69fd816ec320_Cfunc_RSA_generate_key’: define DECLARE_DEPRECATED(f) f attribute ((deprecated));
/home/eric/dev/openssl3.0-build/include/openssl/rsa.h:244:1: note: in expansion of macro ‘DEPRECATEDIN_0_9_8’ project/vendor/github.com/spacemonkeygo/opensslcgo-gcc-prolog: In function ‘_cgo_69fd816ec320_Cfunc_HMAC_Init_ex’: define DECLARE_DEPRECATED(f) f attribute ((deprecated));
/home/eric/dev/openssl3.0-build/include/openssl/hmac.h:39:1: note: in expansion of macro ‘DEPRECATEDIN_3_0’ project/vendor/github.com/spacemonkeygo/opensslshim.c: In function ‘X_HMAC_CTX_new’: define DECLARE_DEPRECATED(f) f attribute ((deprecated));
/home/eric/dev/openssl3.0-build/include/openssl/hmac.h:32:1: note: in expansion of macro ‘DEPRECATEDIN_3_0’ define DECLARE_DEPRECATED(f) f attribute ((deprecated));
/home/eric/dev/openssl3.0-build/include/openssl/hmac.h:34:1: note: in expansion of macro ‘DEPRECATEDIN_3_0’ define DECLARE_DEPRECATED(f) f attribute ((deprecated));
/home/eric/dev/openssl3.0-build/include/openssl/conf.h:98:1: note: in expansion of macro ‘DEPRECATEDIN_1_1_0’ define DECLARE_DEPRECATED(f) f attribute ((deprecated));
/home/eric/dev/openssl3.0-build/include/openssl/engine.h:347:1: note: in expansion of macro ‘DEPRECATEDIN_3_0’ define DECLARE_DEPRECATED(f) f attribute ((deprecated));
/home/eric/dev/openssl3.0-build/include/openssl/ssl.h:1924:1: note: in expansion of macro ‘DEPRECATEDIN_1_1_0’ define DECLARE_DEPRECATED(f) f attribute ((deprecated));
/home/eric/dev/openssl3.0-build/include/openssl/ssl.h:1930:1: note: in expansion of macro ‘DEPRECATEDIN_1_1_0’ define DECLARE_DEPRECATED(f) f attribute ((deprecated));
/home/eric/dev/openssl3.0-build/include/openssl/ssl.h:1936:1: note: in expansion of macro ‘DEPRECATEDIN_1_1_0’ define DECLARE_DEPRECATED(f) f attribute ((deprecated));
/home/eric/dev/openssl3.0-build/include/openssl/hmac.h:31:1: note: in expansion of macro ‘DEPRECATEDIN_3_0’ define DECLARE_DEPRECATED(f) f attribute ((deprecated));
/home/eric/dev/openssl3.0-build/include/openssl/hmac.h:39:1: note: in expansion of macro ‘DEPRECATEDIN_3_0’ define DECLARE_DEPRECATED(f) f attribute ((deprecated));
/home/eric/dev/openssl3.0-build/include/openssl/hmac.h:41:1: note: in expansion of macro ‘DEPRECATEDIN_3_0’ define DECLARE_DEPRECATED(f) f attribute ((deprecated));
/home/eric/dev/openssl3.0-build/include/openssl/hmac.h:43:1: note: in expansion of macro ‘DEPRECATEDIN_3_0’ project/utils../utils/openssl_utils.go: In function 'get_revoked_entry_serialnumber': Compilation finished with exit code 2 |
No description provided.
The text was updated successfully, but these errors were encountered: