Jump to content

mySQL Structure for Encrypted Data


DanRz
Go to solution Solved by Barand,

Recommended Posts

Hey,

I am developing an small app that will add data to a mySQL database. This is working fine however, I need to encrypt the data. I have the code to do this; however, I am not sure how people structure the mySQL tables for this?

Obviously, something like varchar(255) might not be long enough. So do you set all columns to be TEXT?

Is there a better way of doing this?

Thanks
Dan

Link to comment
Share on other sites

  • Solution

VARCHAR columns aren't limited to 255 characters

From manual (https://dev.mysql.com/doc/refman/5.7/en/char.html) ...

Quote

Values in VARCHAR columns are variable-length strings. The length can be specified as a value from 0 to 65,535. The effective maximum length of a VARCHAR is subject to the maximum row size (65,535 bytes, which is shared among all columns) and the character set used.

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.