Skip to content

Commit 4c358b4

Browse files
committed
github#818 http to https conversion.
1 parent 1c80c1a commit 4c358b4

File tree

61 files changed

+88
-87
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+88
-87
lines changed

LICENSE.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<html>
22
<body bgcolor=#ffffff>
33

4-
Copyright (c) 2000-2020 The Legion of the Bouncy Castle Inc. (http://www.bouncycastle.org)
4+
Copyright (c) 2000-2020 The Legion of the Bouncy Castle Inc. (https://www.bouncycastle.org)
55
<p>
66
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
77
and associated documentation files (the "Software"), to deal in the Software without restriction,

bc-build.properties

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

2-
release.suffix: 167
3-
release.name: 1.67
4-
release.version: 1.67.00
5-
release.debug: false
2+
release.suffix: 168b02
3+
release.name: 1.68b02
4+
release.version: 1.68.00.02
5+
release.debug: true
66

77
mail.jar.home: ./libs/mail.jar
88
activation.jar.home: ./libs/activation.jar

core/src/main/java/org/bouncycastle/LICENSE.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* The Bouncy Castle License
77
*
8-
* Copyright (c) 2000-2019 The Legion Of The Bouncy Castle Inc. (http://www.bouncycastle.org)
8+
* Copyright (c) 2000-2019 The Legion Of The Bouncy Castle Inc. (https://www.bouncycastle.org)
99
* <p>
1010
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software
1111
* and associated documentation files (the "Software"), to deal in the Software without restriction,
@@ -26,7 +26,7 @@
2626
public class LICENSE
2727
{
2828
public static final String licenseText =
29-
"Copyright (c) 2000-2019 The Legion of the Bouncy Castle Inc. (http://www.bouncycastle.org) "
29+
"Copyright (c) 2000-2019 The Legion of the Bouncy Castle Inc. (https://www.bouncycastle.org) "
3030
+ Strings.lineSeparator()
3131
+ Strings.lineSeparator()
3232
+ "Permission is hereby granted, free of charge, to any person obtaining a copy of this software "

core/src/main/java/org/bouncycastle/asn1/cms/Attribute.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import org.bouncycastle.asn1.DERSequence;
1111

1212
/**
13-
* <a href="http://tools.ietf.org/html/rfc5652#page-14">RFC 5652</a>:
13+
* <a href="https://tools.ietf.org/html/rfc5652#page-14">RFC 5652</a>:
1414
* Attribute is a pair of OID (as type identifier) + set of values.
1515
* <p>
1616
* <pre>

core/src/main/java/org/bouncycastle/asn1/cms/Attributes.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import org.bouncycastle.asn1.DLSet;
99

1010
/**
11-
* <a href="http://tools.ietf.org/html/rfc5652">RFC 5652</a> defines
11+
* <a href="https://tools.ietf.org/html/rfc5652">RFC 5652</a> defines
1212
* 5 "SET OF Attribute" entities with 5 different names.
1313
* This is common implementation for them all:
1414
* <pre>

core/src/main/java/org/bouncycastle/asn1/cms/AuthEnvelopedData.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import org.bouncycastle.asn1.DERTaggedObject;
1313

1414
/**
15-
* <a href="http://tools.ietf.org/html/rfc5083">RFC 5083</a>:
15+
* <a href="https://tools.ietf.org/html/rfc5083">RFC 5083</a>:
1616
*
1717
* CMS AuthEnveloped Data object.
1818
* <p>

core/src/main/java/org/bouncycastle/asn1/cms/AuthenticatedData.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
1616

1717
/**
18-
* <a href="http://tools.ietf.org/html/rfc5652#section-9.1">RFC 5652</a> section 9.1:
18+
* <a href="https://tools.ietf.org/html/rfc5652#section-9.1">RFC 5652</a> section 9.1:
1919
* The AuthenticatedData carries AuthAttributes and other data
2020
* which define what really is being signed.
2121
* <pre>

core/src/main/java/org/bouncycastle/asn1/cms/CCMParameters.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import org.bouncycastle.util.Arrays;
1212

1313
/**
14-
* <a href="http://tools.ietf.org/html/rfc5084">RFC 5084</a>: CCMParameters object.
14+
* <a href="https://tools.ietf.org/html/rfc5084">RFC 5084</a>: CCMParameters object.
1515
* <p>
1616
* <pre>
1717
CCMParameters ::= SEQUENCE {

core/src/main/java/org/bouncycastle/asn1/cms/CMSAttributes.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66

77
/**
8-
* <a href="http://tools.ietf.org/html/rfc5652">RFC 5652</a> CMS attribute OID constants.
9-
* and <a href="http://tools.ietf.org/html/rfc6211">RFC 6211</a> Algorithm Identifier Protection Attribute.
8+
* <a href="https://tools.ietf.org/html/rfc5652">RFC 5652</a> CMS attribute OID constants.
9+
* and <a href="https://tools.ietf.org/html/rfc6211">RFC 6211</a> Algorithm Identifier Protection Attribute.
1010
* <pre>
1111
* contentType ::= 1.2.840.113549.1.9.3
1212
* messageDigest ::= 1.2.840.113549.1.9.4
@@ -28,7 +28,7 @@ public interface CMSAttributes
2828
ASN1ObjectIdentifier signingTime = PKCSObjectIdentifiers.pkcs_9_at_signingTime;
2929
/** PKCS#9: 1.2.840.113549.1.9.6 */
3030
ASN1ObjectIdentifier counterSignature = PKCSObjectIdentifiers.pkcs_9_at_counterSignature;
31-
/** PKCS#9: 1.2.840.113549.1.9.16.6.2.4 - See <a href="http://tools.ietf.org/html/rfc2634">RFC 2634</a> */
31+
/** PKCS#9: 1.2.840.113549.1.9.16.6.2.4 - See <a href="https://tools.ietf.org/html/rfc2634">RFC 2634</a> */
3232
ASN1ObjectIdentifier contentHint = PKCSObjectIdentifiers.id_aa_contentHint;
3333

3434
ASN1ObjectIdentifier cmsAlgorithmProtect = PKCSObjectIdentifiers.id_aa_cmsAlgorithmProtect;

core/src/main/java/org/bouncycastle/asn1/cms/CompressedData.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
1111

1212
/**
13-
* <a href="http://tools.ietf.org/html/rfc3274">RFC 3274</a>: CMS Compressed Data.
13+
* <a href="https://tools.ietf.org/html/rfc3274">RFC 3274</a>: CMS Compressed Data.
1414
*
1515
* <pre>
1616
* CompressedData ::= SEQUENCE {

core/src/main/java/org/bouncycastle/asn1/cms/CompressedDataParser.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
88

99
/**
10-
* Parser of <a href="http://tools.ietf.org/html/rfc3274">RFC 3274</a> {@link CompressedData} object.
10+
* Parser of <a href="https://tools.ietf.org/html/rfc3274">RFC 3274</a> {@link CompressedData} object.
1111
* <p>
1212
* <pre>
1313
* CompressedData ::= SEQUENCE {

core/src/main/java/org/bouncycastle/asn1/cms/ContentInfo.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
import org.bouncycastle.asn1.BERTaggedObject;
1212

1313
/**
14-
* <a href="http://tools.ietf.org/html/rfc5652#section-3">RFC 5652</a> ContentInfo, and
15-
* <a href="http://tools.ietf.org/html/rfc5652#section-5.2">RFC 5652</a> EncapsulatedContentInfo objects.
14+
* <a href="https://tools.ietf.org/html/rfc5652#section-3">RFC 5652</a> ContentInfo, and
15+
* <a href="https://tools.ietf.org/html/rfc5652#section-5.2">RFC 5652</a> EncapsulatedContentInfo objects.
1616
*
1717
* <pre>
1818
* ContentInfo ::= SEQUENCE {

core/src/main/java/org/bouncycastle/asn1/cms/ContentInfoParser.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import org.bouncycastle.asn1.ASN1TaggedObjectParser;
99

1010
/**
11-
* <a href="http://tools.ietf.org/html/rfc5652#section-3">RFC 5652</a> {@link ContentInfo} object parser.
11+
* <a href="https://tools.ietf.org/html/rfc5652#section-3">RFC 5652</a> {@link ContentInfo} object parser.
1212
*
1313
* <pre>
1414
* ContentInfo ::= SEQUENCE {

core/src/main/java/org/bouncycastle/asn1/cms/DigestedData.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
1313

1414
/**
15-
* <a href="http://tools.ietf.org/html/rfc5652#section-7">RFC 5652</a> DigestedData object.
15+
* <a href="https://tools.ietf.org/html/rfc5652#section-7">RFC 5652</a> DigestedData object.
1616
* <pre>
1717
* DigestedData ::= SEQUENCE {
1818
* version CMSVersion,

core/src/main/java/org/bouncycastle/asn1/cms/EncryptedContentInfo.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
1313

1414
/**
15-
* <a href="http://tools.ietf.org/html/rfc5652#section-6.1">RFC 5652</a> EncryptedContentInfo object.
15+
* <a href="https://tools.ietf.org/html/rfc5652#section-6.1">RFC 5652</a> EncryptedContentInfo object.
1616
*
1717
* <pre>
1818
* EncryptedContentInfo ::= SEQUENCE {

core/src/main/java/org/bouncycastle/asn1/cms/EncryptedContentInfoParser.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
1010

1111
/**
12-
* Parser for <a href="http://tools.ietf.org/html/rfc5652#section-6.1">RFC 5652</a> EncryptedContentInfo object.
12+
* Parser for <a href="https://tools.ietf.org/html/rfc5652#section-6.1">RFC 5652</a> EncryptedContentInfo object.
1313
* <p>
1414
* <pre>
1515
* EncryptedContentInfo ::= SEQUENCE {

core/src/main/java/org/bouncycastle/asn1/cms/EncryptedData.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import org.bouncycastle.asn1.BERTaggedObject;
1212

1313
/**
14-
* <a href="http://tools.ietf.org/html/rfc5652#section-8">RFC 5652</a> EncryptedData object.
14+
* <a href="https://tools.ietf.org/html/rfc5652#section-8">RFC 5652</a> EncryptedData object.
1515
* <p>
1616
* <pre>
1717
* EncryptedData ::= SEQUENCE {

core/src/main/java/org/bouncycastle/asn1/cms/EnvelopedData.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import org.bouncycastle.asn1.DERTaggedObject;
1414

1515
/**
16-
* <a href="http://tools.ietf.org/html/rfc5652#section-6.1">RFC 5652</a> EnvelopedData object.
16+
* <a href="https://tools.ietf.org/html/rfc5652#section-6.1">RFC 5652</a> EnvelopedData object.
1717
* <pre>
1818
* EnvelopedData ::= SEQUENCE {
1919
* version CMSVersion,

core/src/main/java/org/bouncycastle/asn1/cms/EnvelopedDataParser.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import org.bouncycastle.asn1.BERTags;
1111

1212
/**
13-
* Parser of <a href="http://tools.ietf.org/html/rfc5652#section-6.1">RFC 5652</a> {@link EnvelopedData} object.
13+
* Parser of <a href="https://tools.ietf.org/html/rfc5652#section-6.1">RFC 5652</a> {@link EnvelopedData} object.
1414
* <p>
1515
* <pre>
1616
* EnvelopedData ::= SEQUENCE {

core/src/main/java/org/bouncycastle/asn1/cms/Evidence.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import org.bouncycastle.asn1.tsp.EvidenceRecord;
1010

1111
/**
12-
* <a href="http://tools.ietf.org/html/rfc5544">RFC 5544</a>:
12+
* <a href="https://tools.ietf.org/html/rfc5544">RFC 5544</a>:
1313
* Binding Documents with Time-Stamps; Evidence object.
1414
* <p>
1515
* <pre>

core/src/main/java/org/bouncycastle/asn1/cms/GCMParameters.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import org.bouncycastle.util.Arrays;
1212

1313
/**
14-
* <a href="http://tools.ietf.org/html/rfc5084">RFC 5084</a>: GCMParameters object.
14+
* <a href="https://tools.ietf.org/html/rfc5084">RFC 5084</a>: GCMParameters object.
1515
* <p>
1616
* <pre>
1717
GCMParameters ::= SEQUENCE {

core/src/main/java/org/bouncycastle/asn1/cms/IssuerAndSerialNumber.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import org.bouncycastle.asn1.x509.X509Name;
1515

1616
/**
17-
* <a href="http://tools.ietf.org/html/rfc5652#section-10.2.4">RFC 5652</a>: IssuerAndSerialNumber object.
17+
* <a href="https://tools.ietf.org/html/rfc5652#section-10.2.4">RFC 5652</a>: IssuerAndSerialNumber object.
1818
* <p>
1919
* <pre>
2020
* IssuerAndSerialNumber ::= SEQUENCE {

core/src/main/java/org/bouncycastle/asn1/cms/KEKIdentifier.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import org.bouncycastle.asn1.DERSequence;
1212

1313
/**
14-
* <a href="http://tools.ietf.org/html/rfc5652#section-6.2.3">RFC 5652</a>:
14+
* <a href="https://tools.ietf.org/html/rfc5652#section-6.2.3">RFC 5652</a>:
1515
* Content encryption key delivery mechanisms.
1616
* <p>
1717
* <pre>

core/src/main/java/org/bouncycastle/asn1/cms/KEKRecipientInfo.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
1212

1313
/**
14-
* <a href="http://tools.ietf.org/html/rfc5652#section-6.2.3">RFC 5652</a>:
14+
* <a href="https://tools.ietf.org/html/rfc5652#section-6.2.3">RFC 5652</a>:
1515
* Content encryption key delivery mechanisms.
1616
* <p>
1717
* <pre>

core/src/main/java/org/bouncycastle/asn1/cms/KeyAgreeRecipientIdentifier.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import org.bouncycastle.asn1.DERTaggedObject;
99

1010
/**
11-
* <a href="http://tools.ietf.org/html/rfc5652#section-6.2.2">RFC 5652</a>:
11+
* <a href="https://tools.ietf.org/html/rfc5652#section-6.2.2">RFC 5652</a>:
1212
* Content encryption key delivery mechanisms.
1313
* <p>
1414
* <pre>

core/src/main/java/org/bouncycastle/asn1/cms/KeyAgreeRecipientInfo.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
1313

1414
/**
15-
* <a href="http://tools.ietf.org/html/rfc5652#section-6.2.2">RFC 5652</a>:
15+
* <a href="https://tools.ietf.org/html/rfc5652#section-6.2.2">RFC 5652</a>:
1616
* Content encryption key delivery mechanisms.
1717
* <p>
1818
* <pre>

core/src/main/java/org/bouncycastle/asn1/cms/KeyTransRecipientInfo.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
1212

1313
/**
14-
* <a href="http://tools.ietf.org/html/rfc5652#section-6.2.1">RFC 5652</a>:
14+
* <a href="https://tools.ietf.org/html/rfc5652#section-6.2.1">RFC 5652</a>:
1515
* Content encryption key delivery mechanisms.
1616
* <pre>
1717
* KeyTransRecipientInfo ::= SEQUENCE {

core/src/main/java/org/bouncycastle/asn1/cms/MetaData.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import org.bouncycastle.asn1.DERUTF8String;
1111

1212
/**
13-
* <a href="http://tools.ietf.org/html/rfc5544">RFC 5544</a>:
13+
* <a href="https://tools.ietf.org/html/rfc5544">RFC 5544</a>:
1414
* Binding Documents with Time-Stamps; MetaData object.
1515
* <p>
1616
* <pre>

core/src/main/java/org/bouncycastle/asn1/cms/OriginatorIdentifierOrKey.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import org.bouncycastle.asn1.x509.SubjectKeyIdentifier;
1212

1313
/**
14-
* <a href="http://tools.ietf.org/html/rfc5652#section-6.2.2">RFC 5652</a>:
14+
* <a href="https://tools.ietf.org/html/rfc5652#section-6.2.2">RFC 5652</a>:
1515
* Content encryption key delivery mechanisms.
1616
* <pre>
1717
* OriginatorIdentifierOrKey ::= CHOICE {

core/src/main/java/org/bouncycastle/asn1/cms/OriginatorInfo.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import org.bouncycastle.asn1.DERTaggedObject;
1111

1212
/**
13-
* <a href="http://tools.ietf.org/html/rfc5652#section-6.2.1">RFC 5652</a>: OriginatorInfo object.
13+
* <a href="https://tools.ietf.org/html/rfc5652#section-6.2.1">RFC 5652</a>: OriginatorInfo object.
1414
* <pre>
1515
* RFC 3369:
1616
*

core/src/main/java/org/bouncycastle/asn1/cms/OriginatorPublicKey.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
1111

1212
/**
13-
* <a href="http://tools.ietf.org/html/rfc5652#section-6.2.2">RFC 5652</a>:
13+
* <a href="https://tools.ietf.org/html/rfc5652#section-6.2.2">RFC 5652</a>:
1414
* Content encryption key delivery mechanisms.
1515
* <p>
1616
* <pre>

core/src/main/java/org/bouncycastle/asn1/cms/OtherKeyAttribute.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import org.bouncycastle.asn1.DERSequence;
1010

1111
/**
12-
* <a href="http://tools.ietf.org/html/rfc5652#section-10.2.7">RFC 5652</a>: OtherKeyAttribute object.
12+
* <a href="https://tools.ietf.org/html/rfc5652#section-10.2.7">RFC 5652</a>: OtherKeyAttribute object.
1313
* <p>
1414
* <pre>
1515
* OtherKeyAttribute ::= SEQUENCE {

core/src/main/java/org/bouncycastle/asn1/cms/OtherRecipientInfo.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import org.bouncycastle.asn1.DERSequence;
1111

1212
/**
13-
* <a href="http://tools.ietf.org/html/rfc5652#section-6.2.5">RFC 5652</a>:
13+
* <a href="https://tools.ietf.org/html/rfc5652#section-6.2.5">RFC 5652</a>:
1414
* Content encryption key delivery mechanisms.
1515
* <pre>
1616
* OtherRecipientInfo ::= SEQUENCE {

core/src/main/java/org/bouncycastle/asn1/cms/OtherRevocationInfoFormat.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import org.bouncycastle.asn1.DERSequence;
1111

1212
/**
13-
* <a href="http://tools.ietf.org/html/rfc5652#section-10.2.1">RFC 5652</a>: OtherRevocationInfoFormat object.
13+
* <a href="https://tools.ietf.org/html/rfc5652#section-10.2.1">RFC 5652</a>: OtherRevocationInfoFormat object.
1414
* <p>
1515
* <pre>
1616
* OtherRevocationInfoFormat ::= SEQUENCE {

core/src/main/java/org/bouncycastle/asn1/cms/PasswordRecipientInfo.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
1313

1414
/**
15-
* <a href="http://tools.ietf.org/html/rfc5652#section-10.2.7">RFC 5652</a>:
15+
* <a href="https://tools.ietf.org/html/rfc5652#section-10.2.7">RFC 5652</a>:
1616
* Content encryption key delivery mechanisms.
1717
* <pre>
1818
* PasswordRecipientInfo ::= SEQUENCE {

core/src/main/java/org/bouncycastle/asn1/cms/RecipientEncryptedKey.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import org.bouncycastle.asn1.DERSequence;
1010

1111
/**
12-
* <a href="http://tools.ietf.org/html/rfc5652#section-6.2.2">RFC 5652</a>:
12+
* <a href="https://tools.ietf.org/html/rfc5652#section-6.2.2">RFC 5652</a>:
1313
* Content encryption key delivery mechanisms.
1414
* <pre>
1515
* RecipientEncryptedKey ::= SEQUENCE {

core/src/main/java/org/bouncycastle/asn1/cms/RecipientIdentifier.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import org.bouncycastle.asn1.DERTaggedObject;
1010

1111
/**
12-
* <a href="http://tools.ietf.org/html/rfc5652#section-6.2.1">RFC 5652</a>:
12+
* <a href="https://tools.ietf.org/html/rfc5652#section-6.2.1">RFC 5652</a>:
1313
* Content encryption key delivery mechanisms.
1414
* <pre>
1515
* RecipientIdentifier ::= CHOICE {

core/src/main/java/org/bouncycastle/asn1/cms/RecipientInfo.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import org.bouncycastle.asn1.DERTaggedObject;
1111

1212
/**
13-
* <a href="http://tools.ietf.org/html/rfc5652#section-6.2">RFC 5652</a>:
13+
* <a href="https://tools.ietf.org/html/rfc5652#section-6.2">RFC 5652</a>:
1414
* Content encryption key delivery mechanisms.
1515
* <p>
1616
* <pre>

core/src/main/java/org/bouncycastle/asn1/cms/RecipientKeyIdentifier.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import org.bouncycastle.asn1.DERSequence;
1212

1313
/**
14-
* <a href="http://tools.ietf.org/html/rfc5652#section-6.2.2">RFC 5652</a>:
14+
* <a href="https://tools.ietf.org/html/rfc5652#section-6.2.2">RFC 5652</a>:
1515
* Content encryption key delivery mechanisms.
1616
* <p>
1717
* <pre>

core/src/main/java/org/bouncycastle/asn1/cms/SCVPReqRes.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import org.bouncycastle.asn1.DERTaggedObject;
1010

1111
/**
12-
* <a href="http://tools.ietf.org/html/rfc5940">RFC 5940</a>:
12+
* <a href="https://tools.ietf.org/html/rfc5940">RFC 5940</a>:
1313
* Additional Cryptographic Message Syntax (CMS) Revocation Information Choices.
1414
* <p>
1515
* <pre>

core/src/main/java/org/bouncycastle/asn1/cms/SignedData.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import org.bouncycastle.asn1.DERTaggedObject;
1717

1818
/**
19-
* <a href="http://tools.ietf.org/html/rfc5652#section-5.1">RFC 5652</a>:
19+
* <a href="https://tools.ietf.org/html/rfc5652#section-5.1">RFC 5652</a>:
2020
* <p>
2121
* A signed data object containing multitude of {@link SignerInfo}s.
2222
* <pre>

0 commit comments

Comments
 (0)