Hello @VenkataRohithGanduri-6681,
Thanks for reaching out.
OWIN and MSAL both have different functionalities and are not replacement for each other. Please refer to this for migration - Migrate confidential client applications from ADAL.NET to MSAL.NET.
The OWIN packages are used by an ASP.NET app to authenticate users with the OpenID Connect and Cookies combo. They are used to authenticate the user in the app. Adding sign-in to a web app is about protecting the web app and validating a user token, which is what middleware libraries do. In the case of .NET, this scenario does not yet require the Microsoft Authentication Library (MSAL), which is about acquiring a token to call protected APIs.
In the other hand, for Web apps calling protected APIs, MSAL deals with token acquisition, not user authentication. So, if your app needs to call any API, eg., MS Graph API, you can use MSAL to get the access token for that, after the OpenID Connect package has finished authenticating the user and received an authorization code. MSAL can request for tokens and handles token caching and token refresh for you.
Hope this helps.
------
Please "Accept the answer" if the information helped you. This will help us and others in the community as well.