Reading-Notes

Class 08 Summary :

Access Control (ACL) :

When is Basic Authorization used vs. Bearer Authorization?

What does the JSON Web Token package do?

What considerations should we make when creating and storing a SECRET?

Document the following Vocabulary Terms :

Term  
encryption the method by which information is converted into secret code that hides the information’s true meaning.
token coded string used to securely transfer information over the web.
bearer is a cryptic string, usually generated by the server in response to a login request. The client must send this token in the Authorization header when making requests to protected resources
secret Secret refers to a secret key or passcode that is used by a user to login, or create a login.
JSON Web Token is an open standard that defines a compact and self-contained way for securely transmitting information between parties as a JSON object.

RBAC :

example

sources:

source1

source2

source3

source4