Example of token Generation and Verification Based on ASP. NET Core data protection, coretoken

Source: Internet
Author: User
Tags asymmetric encryption

Example of token Generation and Verification Based on ASP. NET Core data protection, coretoken

ASP. NET Core Data Protection not only provides asymmetric encryption, but also provides flexible key storage methods and consistent encryption and decryption interfaces (Protect and Unprotect ). It is used in Session, Cookie verification, and OpenIdConnect... Of course, you can also use it in application development. For example, this blog post uses it to generate verification tokens for activation accounts.

First, register the DataProtection service in Startup. ConfigureServices () (to inject the IDataProtectionProvider Interface ):

public void ConfigureServices(IServiceCollection services){  services.AddDataProtection();}

Then, add the IDataProtectionProvider interface to the constructor of the DataProtection class, use this interface to create DataProtector, then create SecureDataFormat, and finally use SecureDataFormat. the Protect () method generates the token for activating the account, and uses SecureDataFormat. uprotect () decrypts the token. The complete sample code is as follows:

public class HomeController : Controller{  private readonly ISecureDataFormat<string> _dataFormat;  public HomeController(IDataProtectionProvider _dataProtectionProvider)  {    var dataProtector = _dataProtectionProvider.CreateProtector(typeof(HomeController).FullName);    _dataFormat = new SecureDataFormat<string>(new StringSerializer(), dataProtector);  }  public string GenerateToken()  {    return _dataFormat.Protect(Guid.NewGuid().ToString() + ";" + DateTime.Now.AddHours(10));  }  public string DecryptToken(string token)  {    return _dataFormat.Unprotect(token);  }  private class StringSerializer : IDataSerializer<string>  {    public string Deserialize(byte[] data)    {      return Encoding.UTF8.GetString(data);    }    public byte[] Serialize(string model)    {      return Encoding.UTF8.GetBytes(model);    }  }}

The above is all the content of this article. I hope it will be helpful for your learning and support for helping customers.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.