Code Encryption
What will be the best way to encrypt/decrypt my code. I'm currently using a include file in my code, and want to encrypt this code page.
Will it be best to write a dll to do the encrpytion/decription and call this every time
I want to access the file or not.
View Complete Forum Thread with Replies
Sponsored Links:
Related Messages:
Code Encryption
I have developed a real estate software and I want to encypt few lines of ASP code so that it becomes difficult for a user to edit the code and change copyrights. Example: <% CONST txtUrl = "itHighway.co.uk" CONST txtTitle = "Real Estate Software" CONST txtDatabase = "MS Sql Server" %> How can I encrypt only first two constant variables?
View Replies !
View Related
RSA Encryption
im looking to encrypt a string of numbers in ASP using javascript. Ive been looking up encryption using RSA that does this for text strings. Does anyone know if this can be done with a string of integers?
View Replies !
View Related
Encryption Using Ssl How Can?
Is there an encryption protocol that asp classic uses that asp.net also uses?The reason is, I need to allow users to automatically be logged on if they are logged onto the old asp site in the .net one.They are on the classic asp site, they click a link, first, some info is gathered then it is encrypted and placed in a query string.The .Net site gets the query string, decrypts it and takes it from there.
View Replies !
View Related
Encryption
what I'm looking to do is encrypt a small portion of html code that is generated by my ASP page. I haven't had much luck finding any info to see if it can even be done though. Does anyone know a way to encrypt html so its not as easily viewed by the source page code?
View Replies !
View Related
Encryption Of Name And Password
My form accepts user name and password. I want to encrypt the password when I send it to the server. I think I can use windows advapi32.dll functions to encrypt and decrypt the data. Does anybody know if I can use this dll directly in my asp? Do I have to write customized dll which uses advapi32.dll and then use the customized dll in the asp?
View Replies !
View Related
Encryption/decryption In ASP
I would like to know what is the best to encrypt/decrypt info using ASP. I would like to encrypt some darta when recording it in an Access db and decrypt it when retrieving the data in question. I guess that there are no built-in function so I was wondering if you would have a script that you would recommend. Or should I use a third party? It doesn't have to be very complex.
View Replies !
View Related
File Encryption
I am planning to provide the Pause/Resume while uploading files.Our site is using both java applet and activex to do this.The list of selected files will be stored in an encrypted file using SHA256(I have taken the code from: [LINK]... The user can Pause file uploading and can resume file uploading even without login to our site at any time (even after days/weeks).Since the list of files are stored on an encrypted file our site's client service program will upload the rest of files.I invite all to discuss about the security issues arise out of this solution and how secure is the above program using SHA256?
View Replies !
View Related
Multipart Encryption
"Cannot use Request.Form collection after calling BinaryRead" I get this message cause I have a form that inputs two types of data: a file to upload and a field value to save in a datasource. The encryption is "multipart/form-data". The file is uploaded successfully, but, how can I invoque the fields of the "request.form" without getting this error?
View Replies !
View Related
Transparent Encryption
I am currently working on a project where I need to encrypt the query string parameters to hide the details from the user. However, everywhere this parameters are used, I must encrypt on the calling page, and then decrypt on the page being called. if there is a way to do this transparently so that I don't have to do these steps for all pages? I know this can be done using an HTTP module in .NET but is there a way to do this in classic ASP ?
View Replies !
View Related
Encryption Of Email
I need to send an email via an asp page that will encrypt the email so that it can be decrypted when it arrives in the inbox of the person it was sent to. I know that PGP can be used but i cannot find anything of how to do it online. Has anyone got any ideas where i could find some info about this or even an alternative way of doing things.
View Replies !
View Related
Paypal Encryption
i cant generate paypal buttons with software available as mine need to be dynamic. however i have read paypal manuals 3 times now, and all it tells me is i have to have openSSL. now i dont, least my host doesent anyway, i have an SSL certificate, but it is not open. does anyone have any experience of trying to encrypt there dynamic buttons for paypal and working with ASP ?
View Replies !
View Related
Asymmetric Encryption
How can I encrypt strings using an asymmetric key?I want to encrypt short strings (credit card numbers, etc.) and save the encrypted strings into a database. When accessing the data (i.e. the web admin), he will provide a password (the decryption key). There are DLL components (http://www.aspencrypt.com), but I can't register a DLL on the machine (hosted server).
View Replies !
View Related
Query String Encryption
I'm trying to encrypt query strings. For Example... I want this... http://whatever.com/?clientID=5 to be something like this... http://whatever.com/?[encrypted string] I've seen the 4guysrfromrolla's version. Its fine "but" I don't know if it would be practical in this case. I would need to encrypt many urls on a single page and every link on a displayed page would be pulled from a database. the "rolla" version I came across requires that a text file be created and key written for each encoded string everytime the page is called. This doesn't seem that practical to me because I would be writing files and keys dozens of times everytime the page is called.I've also seen aspEncrypt but they want 250 bucks and I was hoping to avoid this. I also see that .Net has a method for this but I'm only working with classic at this point.
View Replies !
View Related
Error Free Encryption?
I'm working on a site that needs several different types of protection, ranging from hashing pw's (md5) to needing a reversible encryption for some data. The current encryption I'm using is a freeware RC4 implementation but it periodically generates sql-UNfriendly strings that I can't seem to filter no matter what I try. Has anyone else worked with an encrytpion method that's both effective and won't blow up an INSERT statement?
View Replies !
View Related
Encryption Of Credit Card
I am trying to create a simple, secure credit card payment system using either public/private key encrytpion. I know public key encryption is probably more secure, but it is also slower from what I have been reading. What I am looking for is some examples of public or private key encryption.
View Replies !
View Related
Encryption Bottle Neck
I'm writing an application that requires me to encrypt all data within SQL Server. On each page in my application I will need to load somewhere between 200 and 1000 records and decrypt the two fields returned for each record. This is gobbling up major overhead..! Should I dump the decrypted data into a temp table that deletes after the users session ends? Or possibly put the entire collection into a session as an array.
View Replies !
View Related
Looking At Password Login Encryption
Basically what the title says. Im looking into and currently trying to develop a nice secure login. To be honest for this project not much of a security issue but yet learning now will help later. For this instance though there will be a minimum 1 login user to maybe 4 users. A database in this instance to maybe store the encrypted password dont seem worth while so what other way am I best doing ? Or is still the database the ideal method as obviously they have to be stored somewhere.
View Replies !
View Related
128-bit Encryption When Uploading Files
I have written an web based client upload script. But i need to encrypt the files before the upload, and then a method of decrypting them at the server. The files in question will all be audio files, all formats. I am new to asp/asp.net, so can anyone point me in the write direction in how do code the encryption. Is the 128 bit, the best method to use?
View Replies !
View Related
ASP Code - Anti Spam Verification Code
I'm looking for sample code that will require a use to enter a code from a scued image format. I'm sure you've seen them before where the image is barely readable by a human and the user has to enter the code correctly to submit the form. I'm looking for ASP code and NOT ASP.NET code as I am supporting a legacy site.
View Replies !
View Related
Simple Encryption (simple)
A system I use uses advanced encryption for passwords. It was taken from some sample script and adapted some where. However this was I think intended to be for passwords. So nothing too long. However the time has come where I need to create a function to encrypt a large amount of text. It has to encrpt a large amount of text but nothing too advanced is needed to be honest. Just so its unreadable because its written to a text file on drive. It has to be a function though then capable of decrypting the encrypted text. Any ideas ? Again Dont have to be nothing too flash. I mean I had a go at just changing letters to different letters but the function got huge with all the replaces.
View Replies !
View Related
ASP Code
Is there any way that I can store my ASP code in an Access DB and have it display that way? Ideally, I would like to make a page with a text area that I can write and edit code in, and then when I submit it, I would like to view the page that the code creates. The code in the DB would include code that selects from and updates the DB. I would like to do this because I can't work remotely now.
View Replies !
View Related
SQ L Code
What is wrong with my code? This is the error. Microsoft OLE DB Provider for ODBC Drivers (0x80040E14) [Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator) in query expression 'CLASSDATE >= 6/23/2004 ORDERBY CLASSDATE'. This is the code. Code: strSQL = "Select * FROM WellClass WHERE CLASSDATE >= " & DATE & " ORDERBY CLASSDATE"
View Replies !
View Related
XML Code
I am trying to follow the W3Schools tutorial on the XMLDOM object, and it works fine in a regular HTML document inside <script> tags (vbscript), but I am trying to do it in the ASP tags (<% %>) and it does not work. The error says: Code: Microsoft VBScript runtime (0x800A01A8) Object required: '[object]'
View Replies !
View Related
Asp Code
I am trying to do something with it and I can figure out what to do!I have created a database that lets realtors track clients, potential clients, and offers made. Here is a link to the database:(URL address blocked: See forum rules) What I am trying to do is create a form that lets a user enter his first name, last name, email, and offer amount into textboxes. When they click send it adds their information to the Potential Buyer table (the primary key is an auto generated number.) The offer table is basically an associative table, containing the following information: buyer$buyerid, client$clientid, and amount. I would like the amount to be added to this table, and I would like it to also add the newly created buyerid. My problem is that well, I have no idea how to do this, as the buyerid is created only seconds before I need to post it in the offer table. Could anyone help me out with this? I'd really appreciate it.
View Replies !
View Related
PHP Tp ASP Code
Im a novice with ASP and no idea of PHP, can Any one help me convert this to ASP... $rss = $_GET['rss']; if ($rss && $rss != ""){ if ((strpos($rss, "http://") === 0) || (strpos($rss, "https://") === 0)){ readfile($rss); } }
View Replies !
View Related
ASP Nav Code
Here's the current code that I'm using for navigation through some pages. MY question is, I want the item "System-Add Ons" to still stay bolded if I'm on a page that's in a subset of "Products" Is this possible? For example, if a user gets to the page "Monitors," (monitors.asp) I want System-Add Ons to stay bolded.... How can I set up subsets of the "Products" page? Do I have to make a directory and do a test if the page is in the directory "Products" and is affiliated with "Products?" Code:
View Replies !
View Related
Better Code
I Wanna to know that which of below codes related to ADO within ASP (VBscript) is better? CODE ONE :: rsEduCalender.CursorLocation=3 With rsEduCalender if .State=1 then .Close .Open SQLstr,cn,3,1 End With '''''''''''''''''''''''''''''''''''''''''''''''''' ''''''''''''''''''''''' CODE TWO:: With rsEduCalender if .State=1 then .Close .CursorLocation=3 .Open SQLstr,cn,3,1 End With
View Replies !
View Related
My Code
i created ASP page for Online TEST it Consist three pages First Page is Selection of Topic and Number of Questions from List Box. Second page is shows the Questions as per the Selection in previous page Datas from the Database. Third Page is Result Page. But My problem is in Second Page, because all the question are created dynamicaly so that how can i get the User answer I get the question id and correct answer for all the questions. but i need to get the user answer for Result.I attached my code for the second page.
View Replies !
View Related
ASP Code
Is there a program or website that will validate my asp pages?Kind of like how html pages can be validated on http://www2.imagiware.com/RxHTML/ and on http://netmechanic.com
View Replies !
View Related
Zip Code
this is what i am doing for zip codes i want user to enter zip codes like this 92274 92274-0965 so if the user enters zip code like this 92274 then its right but if he enters zip codes like this 922740965 then change it to 92274-0965 this is what i have done so far so i have got the values of first 5 i need to include a -and then the rest of the numbers any idea how to make this work
View Replies !
View Related
Code Need
I need some code to test whether my connection is open in an asp page. Something like this: <% IF NOT connection is open THEN Connection string code here END IF %> I know how to write the connection string, it's the first part of testing whether it's closed or not that I don't know.
View Replies !
View Related
Code
I have two tables, raceresultsview and jockeyselections. In jockeyselections, I have jockey names and stableid, for example Pat Day, stableid 1000.In raceresultsview, I have jockey names, and placement. I want to do something like this: select * from raceresultsview where jockey in (select jockey from jockeyselections). This works FINE, but I need to figure out how to grab the stableid, too.Each time there is a match, I want to insert the stableid and placement into the table named winnings.
View Replies !
View Related
For Next Code
Heres my for next loop. Basically it is pulling files from a folder. Now I want it so that if it reaches the end of all of the files, that it starts over at the beginning. Any ideas? Code:
View Replies !
View Related
ASP Code
This what I am doing: Moderator (from admin) will see a list of cities to approve/decline. If approved, then the city will show up in the search and alert city list boxes. If declined, then the moderator will be asked to pick an approved alternate city and all postings containing the user-inputted city name will be changed to the alternate approved city name. The moderator will be notified via email when not listed is selected. Any one have any ideas on how to build this in ASP? I'm kinda new to this ASP programming thing.
View Replies !
View Related
Zip Code
I'm looking for a script that will auto complete the state field when someone enters their zipcode. I'm currently using http://javascript.internet.com/forms/zip-to-state.html but its kind of out dated and often returns null. Does anyone know of a more up-to-date version or one that is updated regularly? It doesn't have to be free.
View Replies !
View Related
About Code
Can anybody tell me about this: conn.ConnectionString = "SELECT [Customernr], [Customername], [OrderID], [Orderdate], [Itemname], [Ordersum], [Orderdiscount], [Orderprice], [Orderamount] " + " " + "WHERE Customernr = "' + <%txtCustnr.Text %+ '" FROM [CustomerOrderHistory] ORDER BY [Orderdate]"; So what I try to obtain is getting a value from a textbox: txtCustnr.The code is C# in an ASP 2.0 application
View Replies !
View Related
|