-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
02ed925
commit 5121d36
Showing
4 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# | ||
# Makefile used to build the software | ||
# | ||
# Copyright 2021 Nicolas Mora <[email protected]> | ||
# Copyright 2021-2022 Nicolas Mora <[email protected]> | ||
# | ||
# This program is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU GENERAL PUBLIC LICENSE | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# base64url: Base64Url encode or decode FILE, or standard input, to standard output. | ||
|
||
Copyright 2021 Nicolas Mora <[email protected]> | ||
Copyright 2021-2022 Nicolas Mora <[email protected]> | ||
|
||
This program is free software; you can redistribute it and/or modify it under the terms of the GPL3 License. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.8. | ||
.TH BASE64URL "1" "February 2021" "base64url 0.7" "User Commands" | ||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.48.1. | ||
.TH BASE64URL "1" "March 2022" "base64url 0.9" "User Commands" | ||
.SH NAME | ||
base64url \- Base64Url encode or decode FILE, or standard input, to standard output. | ||
.SH SYNOPSIS | ||
|
@@ -8,9 +8,9 @@ base64url \- Base64Url encode or decode FILE, or standard input, to standard out | |
.SH DESCRIPTION | ||
base64url \- Base64Url encode or decode FILE, or standard input, to standard output. | ||
.PP | ||
Version 0.7 | ||
Version 0.9 | ||
.SH COPYRIGHT | ||
Copyright 2021 Nicolas Mora <[email protected]> | ||
Copyright 2021\-2022 Nicolas Mora <[email protected]> | ||
.PP | ||
This program is free software; you can redistribute it and/or | ||
modify it under the terms of the GPL 3 | ||
|
@@ -43,7 +43,7 @@ display this help and exit | |
output version information and exit | ||
.PP | ||
.br | ||
Copyright 2021 Nicolas Mora <[email protected]> | ||
Copyright 2021\-2022 Nicolas Mora <[email protected]> | ||
This program is free software; you can redistribute it and/or | ||
modify it under the terms of the GPL 3 | ||
.SH "SEE ALSO" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* | ||
* base64url: Base64Url encode or decode FILE, or standard input, to standard output. | ||
* | ||
* Copyright 2021 Nicolas Mora <[email protected]> | ||
* Copyright 2021-2022 Nicolas Mora <[email protected]> | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU GENERAL PUBLIC LICENSE | ||
|
@@ -26,7 +26,7 @@ | |
#include <ctype.h> | ||
#include <orcania.h> | ||
|
||
#define _BASE64URL_VERSION "0.7" | ||
#define _BASE64URL_VERSION "0.9" | ||
|
||
#define ACTION_ENCODE 0 | ||
#define ACTION_DECODE 1 | ||
|
@@ -51,7 +51,7 @@ static void print_help(FILE * output, const char * command) { | |
fprintf(output, "\n"); | ||
fprintf(output, "Version %s\n", _BASE64URL_VERSION); | ||
fprintf(output, "\n"); | ||
fprintf(output, "Copyright 2021 Nicolas Mora <[email protected]>\n"); | ||
fprintf(output, "Copyright 2021-2022 Nicolas Mora <[email protected]>\n"); | ||
fprintf(output, "\n"); | ||
fprintf(output, "This program is free software; you can redistribute it and/or\n"); | ||
fprintf(output, "modify it under the terms of the GPL 3\n"); | ||
|
@@ -157,7 +157,7 @@ int main(int argc, char ** argv) { | |
break; | ||
case 'v': | ||
fprintf(stdout, "%s %s\n", argv[0], _BASE64URL_VERSION); | ||
fprintf(stdout, "Copyright 2021 Nicolas Mora <[email protected]>\n"); | ||
fprintf(stdout, "Copyright 2021-2022 Nicolas Mora <[email protected]>\n"); | ||
fprintf(stdout, "This program is free software; you can redistribute it and/or\n"); | ||
fprintf(stdout, "modify it under the terms of the GPL 3\n"); | ||
exit_loop = 1; | ||
|