Skip to content
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

SNOW-715551: Support authentication with OKTA #799

Draft
wants to merge 19 commits into
base: master-2.0.0
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ set(SOURCE_FILES
lib/basic_types.c
lib/error.h
lib/error.c
lib/snowflake_util.h
lib/client_int.h
lib/chunk_downloader.h
lib/chunk_downloader.c
Expand Down Expand Up @@ -97,6 +98,7 @@ set (SOURCE_FILES_PUT_GET
cpp/util/Proxy.cpp
cpp/util/ThreadPool.hpp
cpp/util/SnowflakeCommon.hpp
cpp/util/entities.cpp
cpp/crypto/CryptoTypes.hpp
cpp/crypto/Cryptor.hpp
cpp/crypto/CipherContext.hpp
Expand Down Expand Up @@ -129,9 +131,9 @@ set (SOURCE_FILES_PUT_GET
include/snowflake/ITransferResult.hpp
include/snowflake/PutGetParseResponse.hpp
include/snowflake/SnowflakeTransferException.hpp
include/snowflake/IJwt.hpp
include/snowflake/IBase64.hpp
include/snowflake/Proxy.hpp
include/snowflake/entities.hpp
)

set(SOURCE_FILES_CPP_WRAPPER
Expand All @@ -146,6 +148,9 @@ set(SOURCE_FILES_CPP_WRAPPER
include/snowflake/SFURL.hpp
include/snowflake/CurlDesc.hpp
include/snowflake/CurlDescPool.hpp
include/snowflake/IJwt.hpp
include/snowflake/IAuth.hpp
cpp/lib/SnowflakeUtil.cpp
cpp/lib/Exceptions.cpp
cpp/lib/Connection.cpp
cpp/lib/Statement.cpp
Expand All @@ -167,7 +172,8 @@ set(SOURCE_FILES_CPP_WRAPPER
cpp/lib/ResultSetJson.cpp
cpp/lib/ResultSetJson.hpp
cpp/lib/Authenticator.cpp
cpp/lib/Authenticator.hpp
cpp/lib/Authenticator.hpp
cpp/lib/IAuth.cpp
cpp/jwt/jwtWrapper.cpp
cpp/util/SnowflakeCommon.cpp
cpp/util/SFURL.cpp
Expand Down Expand Up @@ -337,6 +343,7 @@ if (LINUX)
deps-build/${PLATFORM}/${CMAKE_BUILD_TYPE}/azure/include
deps-build/${PLATFORM}/${CMAKE_BUILD_TYPE}/cmocka/include
deps-build/${PLATFORM}/${CMAKE_BUILD_TYPE}/uuid/include
deps-build/${PLATFORM}/${CMAKE_BUILD_TYPE}/picojson/include
include
lib)
endif()
Expand All @@ -352,6 +359,7 @@ if (APPLE)
deps-build/${PLATFORM}/${CMAKE_BUILD_TYPE}/aws/include
deps-build/${PLATFORM}/${CMAKE_BUILD_TYPE}/azure/include
deps-build/${PLATFORM}/${CMAKE_BUILD_TYPE}/cmocka/include
deps-build/${PLATFORM}/${CMAKE_BUILD_TYPE}/picojson/include
include
lib)
endif()
Expand All @@ -366,6 +374,7 @@ if (WIN32)
deps-build/${PLATFORM}/${VSDIR}/${CMAKE_BUILD_TYPE}/aws/include
deps-build/${PLATFORM}/${VSDIR}/${CMAKE_BUILD_TYPE}/azure/include
deps-build/${PLATFORM}/${VSDIR}/${CMAKE_BUILD_TYPE}/cmocka/include
deps-build/${PLATFORM}/${VSDIR}/${CMAKE_BUILD_TYPE}/picojson/include
include
lib)
if (CMAKE_SIZEOF_VOID_P EQUAL 8)
Expand Down
Loading
Loading