Esempio n. 1
0
        public string GenerateUserToken(IEnumerable <Claim> claims)
        {
            if (claims == null)
            {
                throw new ArgumentNullException(nameof(claims));
            }

            var authOptons = _authOptionProvider.GetUserAuthOptions();

            if (authOptons == null)
            {
                throw new InvalidOperationException("Auth options required");
            }

            var now = DateTime.UtcNow;

            var jwt = new JwtSecurityToken
                      (
                issuer: authOptons.Issuer,
                audience: authOptons.Audience,
                claims: claims,
                notBefore: now,
                expires: now.Add(TimeSpan.FromMinutes(authOptons.Lifetime)),
                signingCredentials: new SigningCredentials
                (
                    authOptons.SecurityKey,
                    SecurityAlgorithms.HmacSha256
                )
                      );

            return(new JwtSecurityTokenHandler().WriteToken(jwt));
        }
        public string GenerateUserToken(IEnumerable <Claim> claims)
        {
            var authOptions = _authOptionProvider.GetUserAuthOptions();

            return(GenerateToken(claims, authOptions));
        }