# I am the Watcher. I am your guide through this vast new twtiverse.
#
# Usage:
# https://watcher.sour.is/api/plain/users View list of users and latest twt date.
# https://watcher.sour.is/api/plain/twt View all twts.
# https://watcher.sour.is/api/plain/mentions?uri=:uri View all mentions for uri.
# https://watcher.sour.is/api/plain/conv/:hash View all twts for a conversation subject.
#
# Options:
# uri Filter to show a specific users twts.
# offset Start index for quey.
# limit Count of items to return (going back in time).
#
# twt range = 1 1
# self = https://watcher.sour.is/conv/qi3hama
Golang AES 加密與解密**
【導讀】本文介紹了 Go 服務端 AES 加密解密的實現。RESTful API 設計(Advanced Encryption Standard ,AES)優點 算法公開、計算量小、加密速度快、加密效率高。缺點 發送方和接收方必須商定好密鑰,然後使雙方都能保存好密鑰,密鑰管理成爲雙方的負擔。應用場景 相對大一點的數據量或關鍵數據的加密。加解密package helpe ⌘ Read more