Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8290655
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T12:52:17+00:00 2026-06-08T12:52:17+00:00

I am developing ASP.NET MVC WEB API service. As everywhere i need security tokens.

  • 0

I am developing ASP.NET MVC WEB API service. As everywhere i need security tokens. I have an idea to generate guid using dtabase info. For isntance i need to take entity from db, then take id, datecreated and crete guid usin this info. It will be token that will be send to client. SO he can access his data.

Problem is that i dont know how to generate it. Please advice me something to make it work.

I found interesting article http://www.singular.co.nz/blog/archive/2007/12/20/shortguid-a-shorter-and-url-friendly-guid-in-c-sharp.aspx for shortening GUID.

Any help would be appreciated,
Dima.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T12:52:18+00:00Added an answer on June 8, 2026 at 12:52 pm

    I’d just store an AccessKey uniqueidentifier not null unique along with every entity. You can hand that out to clients. That way you don’t need to mess with encryption or hashing.

    Just make sure not to use Guid.NewGuid() for this as it is not cryptographically strong. Use this:

    public static class SecureGuidGenerator
    {
        [ThreadStatic]
        static RandomNumberGenerator rng;
    
        public static Guid GetNext()
        {
            if (rng == null) rng = RandomNumberGenerator.Create();
            var bytes = new byte[16];
            rng.GetBytes(bytes);
            return new Guid(bytes);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am developing some sort of service using asp.net mvc 4 web api. On
I am developing an ASP.Net MVC 3 Web application using Razor Views. I have
I'm developing a Web Site using ASP.NET MVC 3, Nowadays I need to encrypt
I have two questions: I am developing a web system in asp.net mvc with
I have an Asp.Net MVC Web Application that I am developing. I have TeamCity
Does anyone have an experience with developing a big web app using ASP.NET MVC
I am developing an ASP.Net MVC 3 Web Application. I have a Razor View
I'm developing a web app with asp.net mvc 3 and I have some form
I'm developing an web application using asp.net MVC and jQuery. I have in my
I'm developing an ASP.NET MVC 3 Web Application. I need to catch any web

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.