The term REALM has an overloaded & confusing using in security, what is the exact uses of this term in security?
相关问题
- Angular RxJS mergeMap types
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
In simple terms when you want to access a protected resource you need to identify your self with something like a username and you also need to provide something secret to prove that you are not laying, like a password (credential).
Then this information is checked against a repository and based on the information provided you will be given special privileges (these privileges are defined by the role assigned to you and the user group you are in).
The realm is that repository that does all such controlling stuff.
Take a look at this in-depth explanation:
I hope this helped!