Click here to Skip to main content
15,891,513 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Securing application password Pin
Dominick Marciano5-Oct-12 9:58
professionalDominick Marciano5-Oct-12 9:58 
GeneralRe: Securing application password Pin
Richard MacCutchan5-Oct-12 22:40
mveRichard MacCutchan5-Oct-12 22:40 
AnswerRe: Securing application password Pin
Matty2211-Oct-12 17:29
Matty2211-Oct-12 17:29 
GeneralRe: Securing application password Pin
Dominick Marciano11-Oct-12 18:51
professionalDominick Marciano11-Oct-12 18:51 
GeneralRe: Securing application password Pin
Matty2211-Oct-12 19:05
Matty2211-Oct-12 19:05 
GeneralRe: Securing application password Pin
Matty2211-Oct-12 19:11
Matty2211-Oct-12 19:11 
GeneralRe: Securing application password Pin
Dominick Marciano12-Oct-12 9:28
professionalDominick Marciano12-Oct-12 9:28 
GeneralRe: Securing application password Pin
Matty2212-Oct-12 13:53
Matty2212-Oct-12 13:53 
The server side application that performs the encryption could either be a set of services that the clients make calls to (xml/soap/json) and the data is protected in transit via transport and/or message encryption. Or a web application that the clients use in their browser.

If how your system works at the moment is every client can connect directly to the database without a server application. Then worrying about encryption is pretty pointless anyhow. What stops any of your users from just accessing the database directly by extracting a connection string from your application? What's stopping a client from giving out your current encryption keys to the world? Having clients directly talk to a dbase is generally not how things are done if you are worried about security anyhow. If all your clients are connecting directly to the dbase then I wouldn't be spending your time on encryption, I'd be spending it making a service for your application to call that removes the need for clients to access the dbase directly.

"Two complications I see with this is that 1. a server application needs to be created to handle the incoming request from all the employee's computers and synchronisew them so there isn't any conflict between data request or race conditions and 2. while the database information is being sent from the database server to the employee's computer the information is not encrypted. "

1, All multiuser systems need to deal with race conditions; a service layer doesnt' change any of that. If two users save a record at exactly the same time, how does your application handle this now? If your not dealing with race conditions now, you've already got problems,
2. Why would you think your own hand rolled encryption is more secure than HTTPS/TLS. It almost certainly is not. Besides, you could use HTTPS/TLS + Message layer security if wanted. Read about the differences between transport and message level security/encryption for clarification as to why 2. is not an issue
GeneralRe: Securing application password Pin
Dominick Marciano12-Oct-12 18:59
professionalDominick Marciano12-Oct-12 18:59 
QuestionVB6 Project - Printing Press Management System Pin
Mahesh KL3-Oct-12 5:58
Mahesh KL3-Oct-12 5:58 
AnswerRe: VB6 Project - Printing Press Management System Pin
Dave Kreskowiak3-Oct-12 13:39
mveDave Kreskowiak3-Oct-12 13:39 
AnswerRe: VB6 Project - Printing Press Management System Pin
Eddy Vluggen3-Oct-12 22:49
professionalEddy Vluggen3-Oct-12 22:49 
SuggestionRe: VB6 Project - Printing Press Management System Pin
Joan M4-Oct-12 0:47
professionalJoan M4-Oct-12 0:47 
QuestionWorking from scratch based on created application Pin
Herboren3-Oct-12 5:49
Herboren3-Oct-12 5:49 
AnswerRe: Working from scratch based on created application Pin
Eddy Vluggen3-Oct-12 22:46
professionalEddy Vluggen3-Oct-12 22:46 
AnswerRe: Working from scratch based on created application Pin
Dominick Marciano11-Oct-12 19:02
professionalDominick Marciano11-Oct-12 19:02 
QuestionHow may I add a MDITabControl to my project (VB2008) Pin
Member 16752941-Oct-12 4:56
Member 16752941-Oct-12 4:56 
AnswerRe: How may I add a MDITabControl to my project (VB2008) Pin
Eddy Vluggen1-Oct-12 5:14
professionalEddy Vluggen1-Oct-12 5:14 
QuestionLOAD CSV FILES TO VB 8 Pin
memas6328-Sep-12 6:32
memas6328-Sep-12 6:32 
AnswerRe: LOAD CSV FILES TO VB 8 Pin
Dave Kreskowiak28-Sep-12 7:03
mveDave Kreskowiak28-Sep-12 7:03 
QuestionSOAP service responding with partial data Pin
loctrice28-Sep-12 5:17
professionalloctrice28-Sep-12 5:17 
AnswerRe: SOAP service responding with partial data Pin
Dave Kreskowiak28-Sep-12 7:01
mveDave Kreskowiak28-Sep-12 7:01 
GeneralRe: SOAP service responding with partial data Pin
loctrice28-Sep-12 7:03
professionalloctrice28-Sep-12 7:03 
GeneralRe: SOAP service responding with partial data Pin
Dave Kreskowiak28-Sep-12 7:14
mveDave Kreskowiak28-Sep-12 7:14 
QuestionVB 2005 Datagridview print Pin
Nigel14227-Sep-12 19:34
Nigel14227-Sep-12 19:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.