forked from gknocke/Crypt-PKCS10
-
Notifications
You must be signed in to change notification settings - Fork 5
/
README
958 lines (527 loc) · 26.7 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
NAME
Crypt::PKCS10 - parse PKCS #10 certificate requests
VERSION
version 1.800201
SYNOPSIS
use Crypt::PKCS10;
Crypt::PKCS10->setAPIversion( 1 );
my $decoded = Crypt::PKCS10->new( $csr ) or die Crypt::PKCS10->error;
print $decoded;
@names = $decoded->extensionValue('subjectAltName' );
@names = $decoded->subject unless( @names );
%extensions = map { $_ => $decoded->extensionValue( $_ ) } $decoded->extensions
DESCRIPTION
Crypt::PKCS10 parses PKCS #10 certificate requests (CSRs) and provides
accessor methods to extract the data in usable form.
Common object identifiers will be translated to their corresponding
names. Additionally, accessor methods allow extraction of single data
fields. The format of returned data varies by accessor.
The access methods return the value corresponding to their name. If
called in scalar context, they return the first value (or an empty
string). If called in array context, they return all values.
true values should be specified as 1 and false values as 0. Future API
changes may provide different functions when other values are used.
This file is automatically generated by pod2readme from PKCS10.pm and Changes.
NAME
Crypt::PKCS10 - parse PKCS #10 certificate requests
RELEASE NOTES
Version 1.4 made several API changes. Most users should have a painless
migration.
ALL users must call Crypt::PKCS10->setAPIversion. If not, a warning
will be generated by the first class method called. This warning will
be made a fatal exception in a future release.
Other than that requirement, the legacy mode is compatible with
previous versions.
new will no longer generate exceptions. undef is returned on all
errors. Use the error class method to retrieve the reason.
new will accept an open file handle in addition to a request.
Users are encouraged to migrate to the version 1 API. It is much easier
to use, and does not require the application to navigate internal data
structures.
Version 1.7 provides support for DSA and ECC public keys. By default,
it verifies the signature of CSRs. It also allows the caller to verify
the signature of a CSR. subjectPublicKeyParams and signatureParams
provide additional information. The readFile option to new() will
open() a file containing a CSR by name. The ignoreNonBase64 option
allows PEM to contain extraneous characters. Changes describes
additional improvements. Details follow.
INSTALLATION
Crypt::PKCS10 supports DSA, RSA and ECC public keys in CSRs.
It depends on Crypt::OpenSSL::DSA, Crypt::OpenSSL::RSA and
Crypt::PK::ECC for some operations. All are recommended. Some methods
will return errors if Crypt::PKCS10 is presented with a CSR containing
an unsupported public key type.
To install this module type the following:
perl Makefile.PL
make
make test
make install
REQUIRES
Convert::ASN1
Crypt::OpenSSL::DSA
Crypt::OpenSSL::RSA
Crypt::PK::ECC
Digest::SHA
For ECC: Crypt::PK::ECC
Very old CSRs may require DIGEST::MD{5,4,2}
METHODS
Access methods may exist for subject name components that are not
listed here. To test for these, use code of the form:
$locality = $decoded->localityName if( $decoded->can('localityName') );
If a name component exists in a CSR, the method will be present. The
converse is not (always) true.
class method setAPIversion( $version )
Selects the API version (0 or 1) expected.
Must be called before calling any other method.
The API version determines how a CSR is parsed. Changing the API
version after parsing a CSR will cause accessors to produce
unpredictable results.
Version 0 - DEPRECATED
Some OID names have spaces and descriptions
This is the format used for Crypt::PKCS10 version 1.3 and lower. The
attributes method returns legacy data.
Some new API functions are disabled.
Version 1
OID names from RFCs - or at least compatible with OpenSSL and ASN.1
notation. The attributes method conforms to version 1.
If not called, a warning will be generated and the API will default to
version 0.
In a future release, the warning will be changed to a fatal exception.
To ease migration, both old and new names are accepted by the API.
Every program should call setAPIversion(1).
class method getAPIversion
Returns the current API version.
Returns undef if setAPIversion has never been called.
class method new( $csr, %options )
Constructor, creates a new object containing the parsed PKCS #10
certificate request.
$csr may be a scalar containing the request, a file name, or a file
handle from which to read it.
If a file name is specified, the readFile option must be specified.
If a file handle is supplied, the caller should specify acceptPEM => 0
if the contents are DER.
The request may be PEM or binary DER encoded. Only one request is
processed.
If PEM, other data (such as mail headers) may precede or follow the
CSR.
my $decoded = Crypt::PKCS10->new( $csr ) or die Crypt::PKCS10->error;
Returns undef if there is an I/O error or the request can not be parsed
successfully.
Call error() to obtain more detail.
options
The options are specified as name => value.
If the first option is a HASHREF, it is expanded and any remaining
options are added.
acceptPEM
If false, the input must be in DER format. binmode will be called on
a file handle.
If true, the input is checked for a CERTIFICATE REQUEST header. If
not found, the csr is assumed to be in DER format.
Default is true.
PEMonly
If true, the input must be in PEM format. An error will be returned
if the input doesn't contain a CERTIFICATE REQUEST header. If false,
the input is parsed according to acceptPEM.
Default is false.
binaryMode
If true, an input file or file handle will be set to binary mode
prior to reading.
If false, an input file or file handle's binmode will not be
modified.
Defaults to false if acceptPEM is true, otherwise true.
dieOnError
If true, any API function that sets an error string will also die.
If false, exceptions are only generated for fatal conditions.
The default is false. API version 1 only..
escapeStrings
If true, strings returned for extension and attribute values are
'\'-escaped when formatted. This is compatible with OpenSSL
configuration files.
The special characters are: '\', '$', and '"'
If false, these strings are not '\'-escaped. This is useful when they
are being displayed to a human.
The default is true.
ignoreNonBase64
If true, most invalid base64 characters in PEM data will be ignored.
For example, this will accept CSRs prefixed with '> ', as e-mail when
the PEM is inadvertently quoted. Note that the BEGIN and END lines
may not be corrupted.
If false, invalid base64 characters in PEM data will cause the CSR to
be rejected.
The default is false.
readFile
If true, $csr is the name of a file containing the CSR.
If false, $csr contains the CSR or is an open file handle.
The default is false.
verifySignature
If true, the CSR's signature is checked. If verification fails, new
will fail. Requires API version 1.
If false, the CSR's signature is not checked.
The default is true for API version 1 and false for API version 0.
No exceptions are generated, unless dieOnError is set or new() is
called in void context.
The defaults will accept either PEM or DER from a string or file hande,
which will not be set to binary mode. Automatic detection of the data
format may not be reliable on file systems that represent text and
binary files differently. Set acceptPEM to false and PEMonly to match
the file type on these systems.
The object will stringify to a human-readable representation of the
CSR. This is useful for debugging and perhaps for displaying a request.
However, the format is not part of the API and may change. It should
not be parsed by automated tools.
Exception: The public key and extracted request are PEM blocks, which
other tools can extract.
If another object inherits from Crypt::PKCS10, it can extend the
representation by overloading or calling as_string.
{class} method error
Returns a string describing the last error encountered;
If called as an instance method, last error encountered by the object.
If called as a class method, last error encountered by the class.
Any method can reset the string to undef, so the results are only valid
immediately after a method call.
class method name2oid( $oid )
Returns the OID corresponding to a name returned by an access method.
Not in API v0;
csrRequest( $format )
Returns the binary (ASN.1) request (after conversion from PEM and
removal of any data beyond the length of the ASN.1 structure.
If $format is true, the request is returned as a PEM CSR. Otherwise as
a binary string.
certificationRequest
Returns the binary (ASN.1) section of the request that is signed by the
requestor.
The caller can verify the signature using signatureAlgorithm,
certificationRequest and signature(1).
Access methods for the subject's distinguished name
Note that subjectAltName is prefered, and that modern certificate users
will ignore the subject if subjectAltName is present.
subject( $format )
Returns the entire subject of the CSR.
In scalar context, returns the subject as a string in the form
/componentName=value,value. If format is true, long component names are
used. By default, abbreviations are used when they exist.
e.g. /countryName=AU/organizationalUnitName=Big org/organizationalUnitName=Smaller org
or /C=AU/OU=Big org/OU=Smaller org
In array context, returns an array of (componentName, [values]) pairs.
Abbreviations are not used.
Note that the order of components in a name is significant.
commonName
Returns the common name(s) from the subject.
my $cn = $decoded->commonName();
organizationalUnitName
Returns the organizational unit name(s) from the subject
organizationName
Returns the organization name(s) from the subject.
emailAddress
Returns the email address from the subject.
stateOrProvinceName
Returns the state or province name(s) from the subject.
countryName
Returns the country name(s) from the subject.
subjectAltName( $type )
Convenience method.
When $type is specified: returns the subject alternate name values of
the specified type in list context, or the first value of the specified
type in scalar context.
Returns undefined/empty list if no values of the specified type are
present, or if the subjectAltName extension is not present.
Types can be any of:
otherName
* rfc822Name
* dNSName
x400Address
directoryName
ediPartyName
* uniformResourceIdentifier
* iPAddress
* registeredID
The types marked with '*' are the most common.
If $type is not specified: In list context returns the types present in
the subjectAlternate name. In scalar context, returns the SAN as a
string.
version
Returns the structure version as a string, e.g. "v1" "v2", or "v3"
pkAlgorithm
Returns the public key algorithm according to its object identifier.
subjectPublicKey( $format )
If $format is true, the public key will be returned in PEM format.
Otherwise, the public key will be returned in its hexadecimal
representation
subjectPublicKeyParams
Returns a hash describing the public key. The contents vary depending
on the public key type.
Standard items:
keytype - ECC, RSA, DSA or undef
keytype will be undef if the key type is not supported. In this case,
error() returns a diagnostic message.
keylen - Approximate length of the key in bits.
Other items include:
For RSA, modulus and publicExponent.
For DSA, G, P and Q.
For ECC, curve, pub_x and pub_y. curve is an OID name.
Additional detail
subjectPublicKeyParams(1) returns the standard items, and may also
return detail, which is a hashref.
For ECC, the detail hash includes the curve definition constants.
signatureAlgorithm
Returns the signature algorithm according to its object identifier.
signatureParams
Returns the parameters associated with the signatureAlgorithm as
binary. Returns undef if none, or if NULL.
Note: In the future, some signatureAlgorithms may return a hashref of
decoded fields.
Callers are advised to check for a ref before decoding...
signature( $format )
The CSR's signature is returned.
If $format is 1, in binary.
If $format is 2, decoded as an ECDSA signature - returns hashref to r
and s.
Otherwise, in its hexadecimal representation.
attributes( $name )
A request may contain a set of attributes. The attributes are OIDs with
values. The most common is a list of requested extensions, but other
OIDs can also occur. Of those, challengePassword is typical.
For API version 0, this method returns a hash consisting of all
attributes in an internal format. This usage is deprecated.
For API version 1:
If $name is not specified, a list of attribute names is returned. The
list does not include the requestedExtensions attribute. For that, use
extensions();
If no attributes are present, the empty list (undef in scalar context)
is returned.
If $name is specified, the value of the extension is returned. $name
can be specified as a numeric OID.
In scalar context, a single string is returned, which may include lists
and labels.
cspName="Microsoft Strong Cryptographic Provider",keySpec=2,signature=("",0)
Special characters are escaped as described in options.
In array context, the value(s) are returned as a list of items, which
may be references.
print( " $_: ", scalar $decoded->attributes($_), "\n" )
foreach ($decoded->attributes);
See the module documentation for a list of known OID names.
It is too long to include here.
extensions
Returns an array containing the names of all extensions present in the
CSR. If no extensions are present, the empty list is returned.
The names vary depending on the API version; however, the returned
names are acceptable to extensionValue, extensionPresent, and name2oid.
The values of extensions vary, however the following code fragment will
dump most extensions and their value(s).
print( "$_: ", $decoded->extensionValue($_,1), "\n" ) foreach ($decoded->extensions);
The sample code fragment is not guaranteed to handle all cases.
Production code needs to select the extensions that it understands and
should respect the critical boolean. critical can be obtained with
extensionPresent.
extensionValue( $name, $format )
Returns the value of an extension by name, e.g. extensionValue(
'keyUsage' ). The name SHOULD be an API v1 name, but API v0 names are
accepted for compatibility. The name can also be specified as a numeric
OID.
If $format is 1, the value is a formatted string, which may include
lists and labels. Special characters are escaped as described in
options;
If $format is 0 or not defined, a string, or an array reference may be
returned. The array many contain any Perl variable type.
To interpret the value(s), you need to know the structure of the OID.
See the module documentation for a list of known OID names.
It is too long to include here.
extensionPresent( $name )
Returns true if a named extension is present: If the extension is
critical, returns 2. Otherwise, returns 1, indicating not critical, but
present.
If the extension is not present, returns undef.
The name can also be specified as a numeric OID.
See the module documentation for a list of known OID names.
It is too long to include here.
registerOID( )
Class method.
Register a custom OID, or a public OID that has not been added to
Crypt::PKCS10 yet.
The OID may be an extension identifier or an RDN component.
The oid is specified as a string in numeric form, e.g. '1.2.3.4'
registerOID( $oid )
Returns true if the specified OID is registered, false otherwise.
registerOID( $oid, $longname, $shortname )
Registers the specified OID with the associated long name. This enables
the OID to be translated to a name in output.
The long name should be Hungarian case (commonName), but this is not
currently enforced.
Optionally, specify the short name used for extracting the subject. The
short name should be upper-case (and will be upcased).
E.g. built-in are $oid => '2.4.5.3', $longname => 'commonName',
$shortname => 'CN'
To register a shortname for an existing OID without one, specify
$longname as undef.
E.g. To register /E for emailAddress, use: Crypt::PKCS10->registerOID(
'1.2.840.113549.1.9.1', undef, 'e' )
Generates an exception if any argument is not valid, or is in use.
Returns true otherwise.
checkSignature
Verifies the signature of a CSR. (Useful if new() specified
verifySignature => 0.)
Returns true if the signature is OK.
Returns false if the signature is incorrect. error() returns the
reason.
Returns undef if it was not possible to complete the verification
process (e.g. a required Perl module could not be loaded or an
unsupported key/signature type is present.)
certificateTemplate
CertificateTemplate returns the certificateTemplate attribute.
Equivalent to extensionValue( 'certificateTemplate' ), which is
prefered.
CHANGES
1.0 2014-08-20
- Initial Version
1.1 2015-10-09
- Allow same OID elements in RDNs
- Support for all DirectoryStrings
- New accessor method: organizationName
1.2 2015-11-13
- Add generic method extensionValue
- Ommit unknown or damaged extensions
1.3 2015-11-17
- Experimental Perl features removed
- Refactored building process
1.4_01 2016-01-14
- Find PEM anywhere
- Support repeated attributes
- Various crashes, internal optimizations
- More OIDs
- Access methods: subject, subjectAltName, extensions
- Generate access methods for unknown OIDs in DNs at runtime
- Add extractCSR method to get CSR in binary or PEM
- subjectPublicKey option to extract in PEM format
- Convert IP addresses to strings
- Convert basicConstraints to string
- Add registerOID to allow extraction of simple custom OIDs
- More tests
- Improve documentation
- Add setAPIversion, regularize OID names in V1
- For API V1, attributes method returns names or values of attributes (except extensions)
- Improve build: Use Dist::Zilla, autogenerate README,LICENE,META,Makefile.PL
- Generate & ship Commitlog from git
1.4_02
- For API V1, omit space in key usage list
- Look for policy identifier names in all tables
- Decode certificatePolicyIdentifier, add related OIDs
- Avoid building un-necessary ASN.1 parsers
- Fully decode ApplicationCertPolicies for API V1
- Check enhanced key usage before registering OID
- Add name2oid to API
- Internal cleanup & error reporting improvements
1.4_03
- certificateTemplate ASN correction: MajorVersion is optional
- certificateTemplate returns id as a name if OID registered (API V1)
- handle some malformed requests better
- decode more M$ attributes, correct some.
- Don't croak() on missing attributes
- Convert BMPStrings from UCS2 to Perl (printable) strings
- Rework special OID handling to be scalable & cover attributes
- Don't croak in new. (API V1) Always return undef. Class method error() returns detail.
- Return reasonable strings from attributes('name') and extensionValue('name',1)
- Overload object so print can produce a useful dump.
- Handle null subject
- More enhanced key usage OIDs
- keyUsage returns array rather than comma separated string (API v1)
- Cleaned up POD
- Do a better job with error reporting
- Validate PEM's Base64 encoding.
- Ensure that only the first PEM certificate is extracted.
- Improve tests
- Enable (internal) custom formatters for extensions and attributes.
- Return basicConstraints as a hash
- Accept numeric OIDs as arguments to extensionValue, extensionPresent and attributes.
1.4_04
- Build Kwalitee issues: Minimum Perl version, Repo location, and Provides in META
- Fix test issues due to hash randomization on newer Perl versions.
1.4_05
- Sign distribution kits
- Remove execute permissions from text files
- Generate Markdown format README for github
- Use Pod::Weaver to manage authorship, copyright from dist.ini
- Add prerequisites display test
- Validate with perlcritic, pod syntax
1.5
- Uncoordinated release of 1.4_04
1.6
- Support some EC OIDs
1.7
- ECC test doesn't require Data::Dumper
- Support more EC OIDs
- Add DSA OIDs
- Add subjectPublicKeyParams(), which provides some description of the key
- Add certificationRequest and signature(1) to enable verification of CSR signatures
- Add signatureParams()
- Add signature(2) to extract ECDSA signature components.
- Fix and extend registerOID, add tests.
- Add examples/ directory with sample code
- Verify signature of CSRs in new() by default. Add checkSignature().
- Optionally allow invalid base64 character in PEM data.
- Allow new() from filename and options from hashref.
1.7_01
- Address CPANTS failures due to bugs in old versions of Crypt::PK::ECC
- Add explicit version dependency for CryptX, the parent distribution.
- For insurance, add explicit version requirements for the other modules we depend on.
- Add getAPIversion
- Make stringify use an overloadable method so it can be extended if subclassed.
- Correctly parse DER for expected length when removing padding.
1.8
- When returning PEM, ensure max line width of 64 to satisfy RFC 7468, not 76 of MIME.
- Fix test failures on some editions of 5.8.8 due to Perl bug 39185. (Tripped in test, not module.)
1.8001
- Makefile.pl: Diagnose old OpenSSL versions that fail signature verification and discard automated tests in that case.
- Print full OpenSSL configuration during automated testing.
- Require CryptX with version fix.
- Silence test warning if openssl command is missing.
- No changes to functional code.
1.8002
- Cosmetic: wrap long form OpenSSL config in test
- Make RSA, DSA and ECC support optional. Warn during install none are present or any don't work.
- Signature verification requires the corresponding module, as does decoding ECC public keys.
- subjectPublicKeyParams and checkSignature set error() for unsupported key type or hash.
- Clean up carp/croak, especially where crept into evals.
- Provide instance method for error.
- Fix stringify's interactions with API v0.
- Add binaryMode and PEMonly options to provide finer grained control of formats
1.8002_01
- Filter OpenSSL's 'WARNING: can't open config file' messages.
- Add dieOnError option to new()
- Report undefined $csr gracefully
- API v0 tests should not try to verify a signature.
- new() in void context will generate an exception.
For a more detailed list of changes, see Commitlog in the distribution.
EXAMPLES
In addition to the code snippets contained in this document, the
examples/ directory of the distribution contains some sample
utilitiles.
Also, the t/ directory of the distribution contains a number of tests
that exercise the API. Although artificial, they are another good
source of examples.
Note that the type of data returned when extracting attributes and
extensions is dependent on the specific OID used.
Also note that some functions not listed in this document are tested.
The fact that they are tested does not imply that they are stable, or
that they will be present in any future release.
The test data was selected to exercise the API; the CSR contents are
not representative of realistic certificate requests.
ACKNOWLEDGEMENTS
Martin Bartosch contributed preliminary EC support: OIDs and tests.
Timothe Litt made most of the changes for V1.4+
Crypt::PKCS10 is based on the generic ASN.1 module by Graham Barr and
on the x509decode example by Norbert Klasen. It is also based upon the
works of Duncan Segrest's Crypt-X509-CRL module.
AUTHORS
* Gideon Knocke <[email protected]>
* Timothe Litt <[email protected]>
COPYRIGHT AND LICENSE
This software is copyright (c) 2014, 2016 by Gideon Knocke, Timothe
Litt.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
BUG REPORTS
Please report any bugs or feature requests on the bugtracker website
https://rt.cpan.org/Public/Dist/Display.html?Name=Crypt-PKCS10 or by
email to [email protected].
When submitting a bug or request, please include a test-file or a patch
to an existing test-file that illustrates the bug or desired feature.