File tree Expand file tree Collapse file tree 4 files changed +25
-15
lines changed Expand file tree Collapse file tree 4 files changed +25
-15
lines changed Original file line number Diff line number Diff line change @@ -74,10 +74,12 @@ my %WriteMakefileArgs = (
7474 " NAME" => " Crypt::OpenSSL::SignCSR" ,
7575 " PREREQ_PM" => {},
7676 " TEST_REQUIRES" => {
77+ " Crypt::OpenSSL::PKCS10" => " 0.19" ,
78+ " Crypt::OpenSSL::RSA" => 0,
7779 " File::Slurper" => " 0.012" ,
78- " Test::Exception " => 0
80+ " File::Which " => 0
7981 },
80- " VERSION" => " 0.02 " ,
82+ " VERSION" => " 0.03 " ,
8183 " test" => {
8284 " TESTS" => " t/*.t"
8385 }
@@ -89,8 +91,10 @@ my %WriteMakefileArgs = (
8991);
9092
9193my %FallbackPrereqs = (
94+ " Crypt::OpenSSL::PKCS10" => " 0.19" ,
95+ " Crypt::OpenSSL::RSA" => 0,
9296 " File::Slurper" => " 0.012" ,
93- " Test::Exception " => 0
97+ " File::Which " => 0
9498);
9599
96100unless ( eval { ExtUtils::MakeMaker-> VERSION(' 6.63_03' ) } ) {
Original file line number Diff line number Diff line change @@ -40,16 +40,18 @@ Crypt::OpenSSL::PKCS10 allows you to generate a Certificate Signing Request (CSR
4040
4141Timothy Legge, < timlegge@cpan.org >
4242
43- # COPYRIGHT AND LICENSE
43+ # COPYRIGHT
4444
4545Copyright (C) 2023 by Timothy Legge
4646Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
4747
48+ I did not write any OpenSSL related code I simply copied and pasted
49+ the work of the OpenSSL project's openssl code until I arrived at a XS
50+ based module that could create a certificate from a Certificate Signing Request.
51+
52+ = ; head LICENSE
53+
4854Licensed under the Apache License 2.0 (the "License"). You may not use
4955this file except in compliance with the License. You can obtain a copy
5056in the file LICENSE in the source distribution or at
5157https://www.openssl.org/source/license.html
52-
53- I did not write any OpenSSL related code I simply copied and pasted
54- the work of the OpenSSL project's openssl code until I arrived at a XS
55- based module that could create a certificate from a Certificate Signing Request.
Original file line number Diff line number Diff line change @@ -19,7 +19,9 @@ perl = 5.008
1919
2020[Prereqs / TestRequires]
2121File::Slurper = 0.012
22- Test::Exception = 0
22+ Crypt::OpenSSL::PKCS10 = 0.19
23+ Crypt::OpenSSL::RSA = 0
24+ File::Which = 0
2325
2426[Pod2Readme]
2527
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ use warnings;
77
88require Exporter;
99
10- our $VERSION = " 0.02 " ;
10+ our $VERSION = " 0.03 " ;
1111
1212our @ISA = qw( Exporter) ;
1313
@@ -67,18 +67,20 @@ Crypt::OpenSSL::PKCS10 allows you to generate a Certificate Signing Request (CSR
6767
6868Timothy Legge, E<lt> timlegge@cpan.orgE<gt>
6969
70- =head1 COPYRIGHT AND LICENSE
70+ =head1 COPYRIGHT
7171
7272Copyright (C) 2023 by Timothy Legge
7373Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
7474
75+ I did not write any OpenSSL related code I simply copied and pasted
76+ the work of the OpenSSL project's openssl code until I arrived at a XS
77+ based module that could create a certificate from a Certificate Signing Request.
78+
79+ = head LICENSE
80+
7581Licensed under the Apache License 2.0 (the "License"). You may not use
7682this file except in compliance with the License. You can obtain a copy
7783in the file LICENSE in the source distribution or at
7884https://www.openssl.org/source/license.html
7985
80- I did not write any OpenSSL related code I simply copied and pasted
81- the work of the OpenSSL project's openssl code until I arrived at a XS
82- based module that could create a certificate from a Certificate Signing Request.
83-
8486=cut
You can’t perform that action at this time.
0 commit comments