zoukankan      html  css  js  c++  java
  • JSON Web Token (JWT) RFC7519

    JSON Web Token (JWT)

    Abstract
    
       JSON Web Token (JWT) is a compact, URL-safe means of representing
       claims to be transferred between two parties.  The claims in a JWT
       are encoded as a JSON object that is used as the payload of a JSON
       Web Signature (JWS) structure or as the plaintext of a JSON Web
       Encryption (JWE) structure, enabling the claims to be digitally
       signed or integrity protected with a Message Authentication Code
       (MAC) and/or encrypted.

    4.1.7. "jti" (JWT ID) Claim

    
    
       The "jti" (JWT ID) claim provides a unique identifier for the JWT.
       The identifier value MUST be assigned in a manner that ensures that
       there is a negligible probability that the same value will be
       accidentally assigned to a different data object; if the application
       uses multiple issuers, collisions MUST be prevented among values
       produced by different issuers as well.  The "jti" claim can be used
       to prevent the JWT from being replayed.  The "jti" value is a case-
       sensitive string.  Use of this claim is OPTIONAL.
    
  • 相关阅读:
    Windows netsh命令的使用
    源码安装 qemu-2.0.0 及其依赖 glib-2.12.12
    .ko文件
    Suse环境下编译linux-2.6.24内核
    cut
    POJ3648 Wedding
    [Hnoi2010]Planar
    [中山市选2011]杀人游戏
    BZOJ3033 太鼓达人
    POJ1041 John's trip
  • 原文地址:https://www.cnblogs.com/chucklu/p/13181808.html
Copyright © 2011-2022 走看看