データをbase64エンコードしてURLに入れてから、HttpHandler内でデコードします。
Base64 Encoding は、UriTemplateマッチングを台無しにする '/'文字を許可することを発見しました。次に、ウィキペディアから「URLのBase64を修正」という概念があることがわかりました。
URLバリアントの修正されたBase64が存在し、パディング「=」は使用されず、標準Base64の「+」および「/」文字はそれぞれ「-」および「_」に置き換えられるため、URLエンコーダー/デコーダーを使用します不要になり、エンコードされた値の長さに影響を与えず、リレーショナルデータベース、Webフォーム、および一般的なオブジェクト識別子で使用するために同じエンコードされたフォームをそのまま残します。
.NETを使用して、現在のコードを基本的なbase64エンコードおよびデコードから「修正されたbase64 for URL」メソッドの使用に変更します。誰もこれをしましたか?
デコードするには、次のようなもので始まることを知っています。
string base64EncodedText = base64UrlEncodedText.Replace('-', '+').Replace('_', '/');
// Append '=' char(s) if necessary - how best to do this?
// My normal base64 decoding now uses encodedText
ただし、最後に1つまたは2つの「=」文字を追加する必要がある可能性があります。
私のエンコードロジックは、もう少しシンプルにする必要があります。
// Perform normal base64 encoding
byte[] encodedBytes = Encoding.UTF8.GetBytes(unencodedText);
string base64EncodedText = Convert.ToBase64String(encodedBytes);
// Apply URL variant
string base64UrlEncodedText = base64EncodedText.Replace("=", String.Empty).Replace('+', '-').Replace('/', '_');
RLのBase64へのガイド StackOverflowエントリを見ましたが、これは既知の長さを持っているため、最後に必要な等号の数をハードコーディングできます。
これは正しくパディングする必要があります:-
base64 = base64.PadRight(base64.Length + (4 - base64.Length % 4) % 4, '=');
また、URLセーフなBase64エンコードおよびデコードを処理しているUrlTokenEncodeおよびUrlTokenDecodeメソッドを使用して、クラスHttpServerUtilityを確認してください。
注1:結果は有効なBase64文字列ではありません。URLの一部の安全でない文字は置き換えられます。
注2:結果はRFC4648のbase64urlアルゴリズムとは異なります。
///<summary>
/// Base 64 Encoding with URL and Filename Safe Alphabet using UTF-8 character set.
///</summary>
///<param name="str">The origianl string</param>
///<returns>The Base64 encoded string</returns>
public static string Base64ForUrlEncode(string str)
{
byte[] encbuff = Encoding.UTF8.GetBytes(str);
return HttpServerUtility.UrlTokenEncode(encbuff);
}
///<summary>
/// Decode Base64 encoded string with URL and Filename Safe Alphabet using UTF-8.
///</summary>
///<param name="str">Base64 code</param>
///<returns>The decoded string.</returns>
public static string Base64ForUrlDecode(string str)
{
byte[] decbuff = HttpServerUtility.UrlTokenDecode(str);
return Encoding.UTF8.GetString(decbuff);
}
コメントするのに十分なポイントではありませんが、それが役立つ場合、提供されたリンク(JSON Web Signature ietf draft)でSushilが見つけたコードスニペットは、Base 64をURLのパラメーターとしてエンコードするときに機能します。
怠zyな人のために以下のスニペットをコピーしました:
static string Base64UrlEncode(byte[] arg)
{
string s = Convert.ToBase64String(arg); // Regular base64 encoder
s = s.Split('=')[0]; // Remove any trailing '='s
s = s.Replace('+', '-'); // 62nd char of encoding
s = s.Replace('/', '_'); // 63rd char of encoding
return s;
}
static byte[] Base64UrlDecode(string arg)
{
string s = arg;
s = s.Replace('-', '+'); // 62nd char of encoding
s = s.Replace('_', '/'); // 63rd char of encoding
switch (s.Length % 4) // Pad with trailing '='s
{
case 0: break; // No pad chars in this case
case 2: s += "=="; break; // Two pad chars
case 3: s += "="; break; // One pad char
default: throw new System.Exception(
"Illegal base64url string!");
}
return Convert.FromBase64String(s); // Standard base64 decoder
}
質問で説明されているように、base64とはほとんど異なるbase64urlエンコードのエンコード/デコードを行うコードを探しているときに、ここをヒットしました。
このドキュメントでC#コードスニペットを見つけました。 JSON Web Signature ietf draft
受け入れられた答えと比較して、C#を使用してbase64でエンコードされたURLを基本的にdecodeする方法は次のとおりです。
デコード:
string codedValue = "base64encodedUrlHere";
string decoded;
byte[] buffer = Convert.FromBase64String(codedValue);
decoded = Encoding.UTF8.GetString(buffer);