forked from pool/yubico-piv-tool
Accepting request 391588 from home:Simmphonie:yubico
OBS-URL: https://build.opensuse.org/request/show/391588 OBS-URL: https://build.opensuse.org/package/show/security/yubico-piv-tool?expand=0&rev=14
This commit is contained in:
parent
e3725b2fc8
commit
07899c8247
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:01d34223157ef1ad23ea1c4307d53e6f20b8830747297f1272634342f90f87dc
|
|
||||||
size 500381
|
|
Binary file not shown.
3
yubico-piv-tool-1.3.1.tar.gz
Normal file
3
yubico-piv-tool-1.3.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:948f285d81fb9702c979abd027020b323e75b572cac0a2166e0a4b410874ecee
|
||||||
|
size 513998
|
BIN
yubico-piv-tool-1.3.1.tar.gz.sig
Normal file
BIN
yubico-piv-tool-1.3.1.tar.gz.sig
Normal file
Binary file not shown.
@ -1,3 +1,38 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Apr 25 20:04:14 UTC 2016 - t.gruner@katodev.de
|
||||||
|
|
||||||
|
- Version 1.3.1 (released 2016-04-19)
|
||||||
|
- Fix a bug where unblock pin would instead change puk, introduced in 1.3.0.
|
||||||
|
- Clarifications with help texts.
|
||||||
|
|
||||||
|
- Version 1.3.0 (released 2016-02-19)
|
||||||
|
- Fixed extraction of RSA modulus and exponent for pkcs11.
|
||||||
|
- Implemented C_SetPIN for pkcs11.
|
||||||
|
- Add generic write and read object actions for the tool. Supports hex/binary/base64 formats
|
||||||
|
- Add ykpiv_change_pin(), ykpiv_change_puk() and ykpiv_unblock_pin()
|
||||||
|
- Print CCC with status action.
|
||||||
|
- Address bugs with pkcs11 on windows.
|
||||||
|
- Add --valid-days and --serial to tool for selfsign-certificate action.
|
||||||
|
- Ask for password for pkcs12 if none is given.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Dec 11 08:12:48 UTC 2015 - t.gruner@katodev.de
|
||||||
|
|
||||||
|
- Version 1.2.2 (released 2015-12-08)
|
||||||
|
- Fix old buffer overflow in change-pin functionality.
|
||||||
|
|
||||||
|
- Version 1.2.1 (released 2015-12-08)
|
||||||
|
-Fix issue with big certificates and status.
|
||||||
|
|
||||||
|
- Version 1.2.0 (released 2015-12-07)
|
||||||
|
- On OSX use @loader_path instead of @executable_path for ykcs11.
|
||||||
|
- Add ykpiv_import_private_key to libykpiv.
|
||||||
|
- Raise buffer sizes to support bigger objects.
|
||||||
|
- Change behavior of action status, only list populated slots.
|
||||||
|
- Add retired keys to ykcs11.
|
||||||
|
- In ykcs11 support login with non null terminated pin.
|
||||||
|
- Add a new action set-ccc to yubico-piv-tool to set the CCC.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Nov 18 20:57:56 UTC 2015 - t.gruner@katodev.de
|
Wed Nov 18 20:57:56 UTC 2015 - t.gruner@katodev.de
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package yubico-piv-tool
|
# spec file for package yubico-piv-tool
|
||||||
#
|
#
|
||||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
%define soname 1
|
%define soname 1
|
||||||
Name: yubico-piv-tool
|
Name: yubico-piv-tool
|
||||||
Version: 1.1.2
|
Version: 1.3.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Yubico YubiKey NEO CCID Manager
|
Summary: Yubico YubiKey NEO CCID Manager
|
||||||
License: BSD-2-Clause
|
License: BSD-2-Clause
|
||||||
@ -29,6 +29,7 @@ Source1: https://developers.yubico.com/yubico-piv-tool/Releases/%{name}-%
|
|||||||
BuildRequires: libtool
|
BuildRequires: libtool
|
||||||
BuildRequires: pcsc-lite-devel
|
BuildRequires: pcsc-lite-devel
|
||||||
BuildRequires: pkg-config
|
BuildRequires: pkg-config
|
||||||
|
BuildRequires: valgrind
|
||||||
BuildRequires: pkgconfig(openssl)
|
BuildRequires: pkgconfig(openssl)
|
||||||
Requires: libykcs11-%{soname} = %{version}
|
Requires: libykcs11-%{soname} = %{version}
|
||||||
Requires: libykpiv%{soname} = %{version}
|
Requires: libykpiv%{soname} = %{version}
|
||||||
@ -101,12 +102,12 @@ find %{buildroot} -type f -name "*.la" -delete -print
|
|||||||
%files -n libykpiv%{soname}
|
%files -n libykpiv%{soname}
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_libdir}/libykpiv.so.%{soname}
|
%{_libdir}/libykpiv.so.%{soname}
|
||||||
%{_libdir}/libykpiv.so.%{soname}.1.0
|
%{_libdir}/libykpiv.so.%{soname}.3.1
|
||||||
|
|
||||||
%files -n libykcs11-%{soname}
|
%files -n libykcs11-%{soname}
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_libdir}/libykcs11.so.%{soname}
|
%{_libdir}/libykcs11.so.%{soname}
|
||||||
%{_libdir}/libykcs11.so.%{soname}.1.0
|
%{_libdir}/libykcs11.so.%{soname}.3.1
|
||||||
|
|
||||||
%files -n libykpiv-devel
|
%files -n libykpiv-devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
|
Loading…
Reference in New Issue
Block a user