For Bearer authorization, JWT (JSON Web Token) is used, utilizing the HS256 algorithm. The token includes publicKey in the payload and is signed with the privateKey.The payload of our JWT will include the following field:publicKey: The publicKey that corresponds to the private key used to sign the JWT. privateKey: The privateKey is used to sign the JWT.