[PR #35] [MERGED] Supports more two SSL libraries for NSS and GnuTLS. #1319

Closed
opened 2026-03-04 01:53:21 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/s3fs-fuse/s3fs-fuse/pull/35
Author: @ggtakec
Created: 6/1/2014
Status: Merged
Merged: 6/1/2014
Merged by: @ggtakec

Base: masterHead: cryptlibs


📝 Commits (3)

  • cd27f0a Supported another crypt libraries as GnuTLS and NSS, and added configure options
  • edad911 Changed configuration switch from 'enable' to 'with' for libs
  • 1601967 Changed initializing logic for nss lib/openssl lib/s3fs own.

📊 Changes

13 files changed (+1064 additions, -374 deletions)

View changed files

📝 configure.ac (+157 -52)
📝 src/Makefile.am (+14 -1)
src/common_auth.cpp (+105 -0)
📝 src/curl.cpp (+16 -266)
📝 src/curl.h (+0 -13)
📝 src/fdcache.cpp (+2 -2)
src/gnutls_auth.cpp (+259 -0)
src/nss_auth.cpp (+196 -0)
src/openssl_auth.cpp (+256 -0)
📝 src/s3fs.cpp (+28 -6)
📝 src/s3fs.h (+0 -32)
src/s3fs_auth.h (+26 -0)
📝 src/s3fs_util.cpp (+5 -2)

📄 Description

This change supports more two SSL library which are NSS and GnuTLS.

The libcurl library which is called by s3fs is implemented in a libraries of OpenSSL or NSS, GnuTLS, etc.
Then s3fs should call same library as implemented in libcurl.

And maybe this change solves the problem of the OpenSSL license for building a package and distributing it.

Finally this change adds a new option about selecting libraries to configuration. Specifically, I will add a postscript in Installation Notes wiki page.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/s3fs-fuse/s3fs-fuse/pull/35 **Author:** [@ggtakec](https://github.com/ggtakec) **Created:** 6/1/2014 **Status:** ✅ Merged **Merged:** 6/1/2014 **Merged by:** [@ggtakec](https://github.com/ggtakec) **Base:** `master` ← **Head:** `cryptlibs` --- ### 📝 Commits (3) - [`cd27f0a`](https://github.com/s3fs-fuse/s3fs-fuse/commit/cd27f0aa54831d808f08b9dda18a438e92669a8e) Supported another crypt libraries as GnuTLS and NSS, and added configure options - [`edad911`](https://github.com/s3fs-fuse/s3fs-fuse/commit/edad91186fb0b9cee2ed1df86095e67bcd2fb826) Changed configuration switch from 'enable' to 'with' for libs - [`1601967`](https://github.com/s3fs-fuse/s3fs-fuse/commit/160196798b02522ec451b64d694e6b18f22ad4b2) Changed initializing logic for nss lib/openssl lib/s3fs own. ### 📊 Changes **13 files changed** (+1064 additions, -374 deletions) <details> <summary>View changed files</summary> 📝 `configure.ac` (+157 -52) 📝 `src/Makefile.am` (+14 -1) ➕ `src/common_auth.cpp` (+105 -0) 📝 `src/curl.cpp` (+16 -266) 📝 `src/curl.h` (+0 -13) 📝 `src/fdcache.cpp` (+2 -2) ➕ `src/gnutls_auth.cpp` (+259 -0) ➕ `src/nss_auth.cpp` (+196 -0) ➕ `src/openssl_auth.cpp` (+256 -0) 📝 `src/s3fs.cpp` (+28 -6) 📝 `src/s3fs.h` (+0 -32) ➕ `src/s3fs_auth.h` (+26 -0) 📝 `src/s3fs_util.cpp` (+5 -2) </details> ### 📄 Description This change supports more two SSL library which are NSS and GnuTLS. The libcurl library which is called by s3fs is implemented in a libraries of OpenSSL or NSS, GnuTLS, etc. Then s3fs should call same library as implemented in libcurl. And maybe this change solves the problem of the OpenSSL license for building a package and distributing it. Finally this change adds a new option about selecting libraries to configuration. Specifically, I will add a postscript in Installation Notes wiki page. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-04 01:53:21 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/s3fs-fuse#1319
No description provided.