一般的なUnixツールを使用したbase64urlのデコード/エンコード

一般的なUnixツールを使用したbase64urlのデコード/エンコード

一般的なcoreutils base64ツールはbase64urlをエンコード/デコードできません。 base64urlのパディングは=オプションで、アルファベットの最後の2文字はと-です_。 [0] [1] 一般的なUnixツールを使用してbase64urlをエンコードしてデコードする簡単な方法は何ですか?

背景:この問題はJWT(RFC7519)を使用すると発生します。

[0]:https://www.rfc-editor.org/rfc/rfc4648#section-5
[1]:https://en.wikipedia.org/wiki/Base64#Variants_summary_table

ベストアンサー1

後で参考にするために、私の質問に自分で答えます。

base64url::encode () { base64 -w0 | tr '+/' '-_' | tr -d '='; }
base64url::decode () { awk '{ if (length($0) % 4 == 3) print $0"="; else if (length($0) % 4 == 2) print $0"=="; else print $0; }' | tr -- '-_' '+/' | base64 -d; }

いくつかのテスト:

$ echo 'he' | base64url::encode
aGUK
$ echo 'aGUK' | base64url::decode
he

$ echo 'hel' | base64url::encode
aGVsCg
$ echo 'aGVsCg' | base64url::decode
hel

$ echo 'hell' | base64url::encode
aGVsbAo
$ echo 'aGVsbAo' | base64url::decode
hell

$ echo 'hello' | base64url::encode
aGVsbG8K
$ echo 'aGVsbG8K' | base64url::decode
hello

$ dd if=/dev/urandom bs=1 count=1M > ./test.bin
1048576+0 records in
1048576+0 records out
1048576 bytes (1.0 MB, 1.0 MiB) copied, 3.1961 s, 328 kB/s

$ sha256sum ./test.bin
a9d5268ac338fa273245073e463058d9399221c5a60d8bea6cc20cab601863e6  ./test.bin

$ sha256sum <(base64url::encode < ./test.bin | base64url::decode)
a9d5268ac338fa273245073e463058d9399221c5a60d8bea6cc20cab601863e6  /dev/fd/63

おすすめ記事