Sync from SUSE:SLFO:Main sscep revision 0747935d291ff5c499212a7f8970633c

This commit is contained in:
Adrian Schröter 2024-05-04 00:51:15 +02:00
commit 032efd35e2
4 changed files with 147 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

BIN
sscep-0.10.0.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

66
sscep.changes Normal file
View File

@ -0,0 +1,66 @@
-------------------------------------------------------------------
Wed Sep 29 22:06:56 UTC 2021 - Martin Hauke <mardnh@gmx.de>
- Update to version 0.10.0
* Added auto-selection of default protection algorithms (-E, -S
and -F) based on getcaps, unless specified explicitly.
* Added parameter -W sec to wait for network connectivity
(default 0).
* Engines are now disabled by default and need to be enabled by
./configure --enable-engines or cmake . -DENABLE_ENGINES=ON
* Compatible with OpenSSL 3.0.0
* Removed support for OpenSSL < 1.1.0
-------------------------------------------------------------------
Thu Aug 19 18:58:26 UTC 2021 - Martin Hauke <mardnh@gmx.de>
- Update to version 0.9.1
* Fixed missing Host header.
* Fixed multiple numeric overflows.
-------------------------------------------------------------------
Mon Feb 8 10:09:33 UTC 2021 - Martin Hauke <mardnh@gmx.de>
- Update to version 0.9.0
* Added -E options for aes128, aes192 and aes256.
* Changed semantics of -E aes. Per RFC8894, plain aes is equal
to aes128. (Before 0.9.0 it was aes256.)
* Implemented mechanism to auto-detect CA certificates (-c)
* Fixed handling of Content-Type headers with a charset defined
* Fixed Content-Type handling in GetCACaps responses
* Fixed global variable declaration for building using GCC 10
- Drop not longer needed patches:
* 0001-Fixed-handling-of-Content-Type-with-a-charset-124.patch
* 0002-Global-variables-need-to-be-declared-using-extern.patch
-------------------------------------------------------------------
Fri Jan 8 16:11:27 UTC 2021 - Martin Hauke <mardnh@gmx.de>
- Update to version 0.8.0
* Added support for HTTP/1.1
* Added support for IPv6
* Added GetCACaps (getcaps) operation
* Added support for POST method for PKI operations
* Added options for additional hashing algorithms
* Added support for autoconf/automake and CMake
* Changed project directory layout to match the conventions
* Fixed encoding of 'issuer and subject' and 'issuer and serial'
* Fixed crashes when sscep is used with an OpenSSL engine
* Replaced GNU getopt by a BSD licensed alternative
-------------------------------------------------------------------
Sun Jun 7 19:17:55 UTC 2020 - Martin Hauke <mardnh@gmx.de>
- Set CFLAGS+=-fcommon to workaround GCC10 compilation issues
-------------------------------------------------------------------
Fri Apr 17 15:05:49 UTC 2020 - Martin Hauke <mardnh@gmx.de>
- Update to latest release, version 0.7.0
- Specfile cleanup
-------------------------------------------------------------------
Fri Dec 02 14:17:08 UTC 2016 - mardnh@gmx.de
- initial package

55
sscep.spec Normal file
View File

@ -0,0 +1,55 @@
#
# spec file for package sscep
#
# Copyright (c) 2021 SUSE LLC
# Copyright (c) 2016-2021, Martin Hauke <mardnh@gmx.de>
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: sscep
Version: 0.10.0
Release: 0
Summary: A command line client for the SCEP protocol
License: BSD-3-Clause-Attribution AND OpenSSL
Group: Productivity/Networking/Diagnostic
URL: https://github.com/certnanny/sscep
Source: https://github.com/certnanny/sscep/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: cmake
BuildRequires: gcc-c++
BuildRequires: libopenssl-devel >= 1.1.0
%description
Simple SCEP (Simple Certificate Enrollment Protocol) client with
modifications for engine support & more.
%prep
%setup -q
%build
%cmake -DENABLE_ENGINES=ON
%install
%cmake_install
install -Dpm 0644 sscep.conf %{buildroot}%{_sysconfdir}/sscep/sscep.conf
install -Dpm 0755 mkrequest %{buildroot}%{_bindir}
%files
%license COPYING
%doc AUTHORS ChangeLog README.md
%dir %{_sysconfdir}/sscep/
%config(noreplace) %{_sysconfdir}/sscep/sscep.conf
%{_bindir}/sscep
%{_bindir}/mkrequest
%changelog