It appears that right now, separate cookies are being created for session data and authentication, named .AspNetCore.Session and .AspNetCore.Cookie. Since both these cookies serve only to uniquely identify users, could they be combined? i.e. Have session use the authentication cookie?
It appears that right now, separate cookies are being created for session data and authentication, named
.AspNetCore.Sessionand.AspNetCore.Cookie. Since both these cookies serve only to uniquely identify users, could they be combined? i.e. Have session use the authentication cookie?