Compare commits
10 Commits
72dc630ae4
...
81c1dd7a31
Author | SHA256 | Date | |
---|---|---|---|
81c1dd7a31 | |||
bd16a035e3 | |||
|
fd4980ec47 | ||
|
18e5bbd50e | ||
|
7a158fb94d | ||
|
4ca3121539 | ||
|
6cde0087ed | ||
|
f13fa97489 | ||
|
1bd8ec523b | ||
|
b16f3ce80f |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4e3dc6f5617209b93f7c133ca36f301779f39d9d8a5df8831c98651ee66aa2da
|
||||
size 2307
|
3
Crypt-DES_EDE3-0.03.tar.gz
Normal file
3
Crypt-DES_EDE3-0.03.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:28592db7b9e34745aa91f3e19e5dbbb83aaf472a29e707b9791d0d02b3e227f5
|
||||
size 12358
|
44
perl-Crypt-DES_EDE3.changes
Normal file
44
perl-Crypt-DES_EDE3.changes
Normal file
@@ -0,0 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 22 05:32:21 UTC 2024 - Tina Müller <timueller+perl@suse.de>
|
||||
|
||||
- updated to 0.30.0 (0.03)
|
||||
see /usr/share/doc/packages/perl-Crypt-DES_EDE3/Changes
|
||||
|
||||
0.03 -- Mon Oct 21 22:39:27 ADT 2024
|
||||
[Change Log]
|
||||
- Release 0.02-TRIAL as 0.03
|
||||
- Basically a rerelease of 0.01 packaged with Dist::Zilla
|
||||
[Detailed Changes]
|
||||
- 658af68 v0.02
|
||||
- e81a2bb Move tests to a test directory
|
||||
- 7dc5eb0 Convert to Dist::Zilla for the build
|
||||
- 90b588f (tag: 0.01) Import 0.01 from CPAN
|
||||
0.02 -- Sun Oct 20 15:53:39 ADT 2024
|
||||
[Change Log]
|
||||
- Basically a rerelease of 0.01 packaged with Dist::Zilla
|
||||
[Detailed Changes]
|
||||
- e81a2bb Move tests to a test directory
|
||||
- 7dc5eb0 Convert to Dist::Zilla for the build
|
||||
- 90b588f (tag: 0.01) Import 0.01 from CPAN
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 30 19:20:01 UTC 2010 - coolo@novell.com
|
||||
|
||||
- switch to perl_requires macro
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Jul 25 19:34:07 CEST 2009 - chris@computersalat.de
|
||||
|
||||
- spec mods
|
||||
* removed ^----------
|
||||
* removed ^#---------
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 19 15:46:16 CEST 2009 - chris@computersalat.de
|
||||
|
||||
- added perl-macros
|
||||
o autogen filelist with perl_gen_filelist
|
||||
- some spec mods
|
||||
o added header
|
||||
o cleanup
|
||||
|
72
perl-Crypt-DES_EDE3.spec
Normal file
72
perl-Crypt-DES_EDE3.spec
Normal file
@@ -0,0 +1,72 @@
|
||||
#
|
||||
# spec file for package perl-Crypt-DES_EDE3
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
#
|
||||
# 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/
|
||||
#
|
||||
|
||||
|
||||
%define cpan_name Crypt-DES_EDE3
|
||||
Name: perl-Crypt-DES_EDE3
|
||||
Version: 0.30.0
|
||||
Release: 0
|
||||
# 0.03 -> normalize -> 0.30.0
|
||||
%define cpan_version 0.03
|
||||
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||
Summary: Triple-DES EDE encryption/decryption
|
||||
URL: https://metacpan.org/release/%{cpan_name}
|
||||
Source0: https://cpan.metacpan.org/authors/id/T/TI/TIMLEGGE/%{cpan_name}-%{cpan_version}.tar.gz
|
||||
BuildArch: noarch
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
BuildRequires: perl(Crypt::DES)
|
||||
Requires: perl(Crypt::DES)
|
||||
Provides: perl(Crypt::DES_EDE3) = %{version}
|
||||
%undefine __perllib_provides
|
||||
%{perl_requires}
|
||||
|
||||
%description
|
||||
_Crypt::DES_EDE3_ implements DES-EDE3 encryption. This is triple-DES
|
||||
encryption where an encrypt operation is encrypt-decrypt-encrypt, and
|
||||
decrypt is decrypt-encrypt-decrypt. This implementation uses _Crypt::DES_
|
||||
to do its dirty DES work, and simply provides a wrapper around that module:
|
||||
setting up the individual DES ciphers, initializing the keys, and
|
||||
performing the encryption/decryption steps.
|
||||
|
||||
DES-EDE3 encryption requires a key size of 24 bytes.
|
||||
|
||||
You're probably best off not using this module directly, as the _encrypt_
|
||||
and _decrypt_ methods expect 8-octet blocks. You might want to use the
|
||||
module in conjunction with _Crypt::CBC_, for example. This would be
|
||||
DES-EDE3-CBC, or triple-DES in outer CBC mode.
|
||||
|
||||
%prep
|
||||
%autosetup -n %{cpan_name}-%{cpan_version}
|
||||
|
||||
%build
|
||||
perl Makefile.PL INSTALLDIRS=vendor
|
||||
%make_build
|
||||
|
||||
%check
|
||||
make test
|
||||
|
||||
%install
|
||||
%perl_make_install
|
||||
%perl_process_packlist
|
||||
%perl_gen_filelist
|
||||
|
||||
%files -f %{name}.files
|
||||
%doc Changes README
|
||||
%license LICENSE
|
||||
|
||||
%changelog
|
Reference in New Issue
Block a user