Skip to content

Commit 1320800

Browse files
committed
Use HTTPS in URL
1 parent fcb8bf6 commit 1320800

23 files changed

+34
-34
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ limitations under the License.
388388
<name>Julius Davies</name>
389389
<id>julius</id>
390390
<email>[email protected]</email>
391-
<organizationUrl>http://juliusdavies.ca/</organizationUrl>
391+
<organizationUrl>https://juliusdavies.ca/</organizationUrl>
392392
<timezone>-8</timezone>
393393
</developer>
394394
<developer>

src/changes/changes.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ The <action> type attribute can be add,update,fix,remove.
576576
This version is released under the
577577
&lt;a href="https://www.apache.org/licenses/LICENSE-2.0">Apache License 2.0&lt;/a>
578578
, please see LICENSE.txt. Previous versions were released under the
579-
&lt;a href="http://www.apache.org/licenses/LICENSE-1.1">Apache License 1.1&lt;/a>
579+
&lt;a href="https://www.apache.org/licenses/LICENSE-1.1">Apache License 1.1&lt;/a>
580580
</action>
581581
<action dev="ggregory" type="update">
582582
The Board recommendation to remove Javadoc author tags has been

src/main/java/org/apache/commons/codec/binary/Base32.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import org.apache.commons.codec.CodecPolicy;
2323

2424
/**
25-
* Provides Base32 encoding and decoding as defined by <a href="http://www.ietf.org/rfc/rfc4648.txt">RFC 4648</a>.
25+
* Provides Base32 encoding and decoding as defined by <a href="https://www.ietf.org/rfc/rfc4648.txt">RFC 4648</a>.
2626
*
2727
* <p>
2828
* The class can be parameterized in the following manner with various constructors:
@@ -53,7 +53,7 @@
5353
*
5454
* @see Base32InputStream
5555
* @see Base32OutputStream
56-
* @see <a href="http://www.ietf.org/rfc/rfc4648.txt">RFC 4648</a>
56+
* @see <a href="https://www.ietf.org/rfc/rfc4648.txt">RFC 4648</a>
5757
* @since 1.5
5858
*/
5959
public class Base32 extends BaseNCodec {

src/main/java/org/apache/commons/codec/binary/Base32InputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
* </p>
4949
*
5050
* @see Base32
51-
* @see <a href="http://www.ietf.org/rfc/rfc4648.txt">RFC 4648</a>
51+
* @see <a href="https://www.ietf.org/rfc/rfc4648.txt">RFC 4648</a>
5252
* @since 1.5
5353
*/
5454
public class Base32InputStream extends BaseNCodecInputStream<Base32, Base32InputStream, Base32InputStream.Builder> {

src/main/java/org/apache/commons/codec/binary/Base32OutputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
* </p>
5353
*
5454
* @see Base32
55-
* @see <a href="http://www.ietf.org/rfc/rfc4648.txt">RFC 4648</a>
55+
* @see <a href="https://www.ietf.org/rfc/rfc4648.txt">RFC 4648</a>
5656
* @since 1.5
5757
*/
5858
public class Base32OutputStream extends BaseNCodecOutputStream<Base32, Base32OutputStream, Base32OutputStream.Builder> {

src/main/java/org/apache/commons/codec/binary/Base64.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import org.apache.commons.codec.CodecPolicy;
2525

2626
/**
27-
* Provides Base64 encoding and decoding as defined by <a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>.
27+
* Provides Base64 encoding and decoding as defined by <a href="https://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>.
2828
*
2929
* <p>
3030
* This class implements section <cite>6.8. Base64 Content-Transfer-Encoding</cite> from RFC 2045 <cite>Multipurpose
@@ -66,7 +66,7 @@
6666
*
6767
* @see Base64InputStream
6868
* @see Base64OutputStream
69-
* @see <a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>
69+
* @see <a href="https://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>
7070
* @since 1.0
7171
*/
7272
public class Base64 extends BaseNCodec {

src/main/java/org/apache/commons/codec/binary/Base64InputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
* </p>
5353
*
5454
* @see Base64
55-
* @see <a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>
55+
* @see <a href="https://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>
5656
* @since 1.4
5757
*/
5858
public class Base64InputStream extends BaseNCodecInputStream<Base64, Base64InputStream, Base64InputStream.Builder> {

src/main/java/org/apache/commons/codec/binary/Base64OutputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
* </p>
5757
*
5858
* @see Base64
59-
* @see <a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>
59+
* @see <a href="https://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>
6060
* @since 1.4
6161
*/
6262
public class Base64OutputStream extends BaseNCodecOutputStream<Base64, Base64OutputStream, Base64OutputStream.Builder> {

src/main/java/org/apache/commons/codec/binary/BaseNCodec.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ public String toString() {
302302
* The {@value} character limit does not count the trailing CRLF, but counts all other characters, including any equal signs.
303303
* </p>
304304
*
305-
* @see <a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045 section 6.8</a>
305+
* @see <a href="https://www.ietf.org/rfc/rfc2045.txt">RFC 2045 section 6.8</a>
306306
*/
307307
public static final int MIME_CHUNK_SIZE = 76;
308308
/**
@@ -345,7 +345,7 @@ public String toString() {
345345
/**
346346
* Chunk separator per RFC 2045 section 2.1.
347347
*
348-
* @see <a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045 section 2.1</a>
348+
* @see <a href="https://www.ietf.org/rfc/rfc2045.txt">RFC 2045 section 2.1</a>
349349
*/
350350
static final byte[] CHUNK_SEPARATOR = { '\r', '\n' };
351351
/**
@@ -381,7 +381,7 @@ private static int createPositiveCapacity(final int minCapacity) {
381381
* Gets a copy of the chunk separator per RFC 2045 section 2.1.
382382
*
383383
* @return the chunk separator
384-
* @see <a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045 section 2.1</a>
384+
* @see <a href="https://www.ietf.org/rfc/rfc2045.txt">RFC 2045 section 2.1</a>
385385
* @since 1.15
386386
*/
387387
public static byte[] getChunkSeparator() {

src/main/java/org/apache/commons/codec/digest/Md5Crypt.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* The libc crypt() "$1$" and Apache "$apr1$" MD5-based hash algorithm.
3030
* <p>
3131
* Based on the public domain ("beer-ware") C implementation from Poul-Henning Kamp which was found at: <a
32-
* href="http://www.freebsd.org/cgi/cvsweb.cgi/src/lib/libcrypt/crypt-md5.c?rev=1.1;content-type=text%2Fplain">
32+
* href="https://www.freebsd.org/cgi/cvsweb.cgi/src/lib/libcrypt/crypt-md5.c?rev=1.1;content-type=text%2Fplain">
3333
* crypt-md5.c @ freebsd.org</a>
3434
* </p>
3535
* <p>

0 commit comments

Comments
 (0)