ASP.NET Framework: URL セーフな Base64 エンコーディングとデコーディング
この手法は、標準の Base64 エンコーディングを変更して URL に適した文字列を作成し、URI テンプレートに干渉する可能性があるパディングや「 」や「/」などの文字を排除します。 ASP.NET の実装は次のとおりです。
<code class="language-csharp">/// <summary> /// URL-safe Base64 encoding using UTF-8. /// </summary> /// <param name="str">The string to encode.</param> /// <returns>The URL-safe Base64 encoded string.</returns> public static string UrlSafeBase64Encode(string str) { byte[] encodedBytes = Encoding.UTF8.GetBytes(str); return HttpServerUtility.UrlTokenEncode(encodedBytes); } /// <summary> /// URL-safe Base64 decoding using UTF-8. /// </summary> /// <param name="str">The URL-safe Base64 encoded string.</param> /// <returns>The decoded string.</returns> public static string UrlSafeBase64Decode(string str) { byte[] decodedBytes = HttpServerUtility.UrlTokenDecode(str); return Encoding.UTF8.GetString(decodedBytes); }</code>
この URL セーフな Base64 エンコードを利用するには、既存の Base64 エンコードおよびデコード メソッドを上記の関数に置き換えるだけです。
重要な考慮事項:
以上がASP.NET で変更された Base64 URL エンコーディングとデコーディングを実装するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。