首頁  >  文章  >  後端開發  >  Python關於編碼Basic Auth的使用方法的實例分析

Python關於編碼Basic Auth的使用方法的實例分析

黄舟
黄舟原創
2017-05-31 14:42:172227瀏覽

這篇文章主要介紹了Python 編碼Basic Auth使用方法簡單實例的相關資料,需要的朋友可以參考下

本片博文主要介紹在Python3 環境下把用戶姓名密碼編碼成字串

程式碼如下:

import base64
def get_basic_auth_str(username, password):
  temp_str = username + ':' + password
  # 转成bytes string
  bytesString = temp_str.encode(encoding="utf-8")
  # base64 编码
  encodestr = base64.b64encode(bytesString)
  # 解码
  decodestr = base64.b64decode(encodestr)

  return 'Basic ' + encodestr.decode()

呼叫範例:

print(get_basic_auth_str('admin', '123456'))

輸出

Basic YWRtaW46MTIzNDU2

以上是Python關於編碼Basic Auth的使用方法的實例分析的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn