FastAPI - Authentication and Security
What will be the output of this code snippet?
```python
from passlib.context import CryptContext
pwd_context = CryptContext(schemes=["bcrypt"])
hashed = pwd_context.hash("mypassword")
print(pwd_context.verify("mypassword", hashed))
```
