1,159 Topics

Member Avatar for
Member Avatar for devjeetroy

Hello guys, I wrote this program to encrypt a string. It uses the WriteConsoleA function to print output, and the ReadConsoleA function for the input. I have called all the functions using stack. Here is the code: [CODE].386 .model flat, stdcall option casemap:none include \masm32\include\windows.inc include \masm32\include\kernel32.inc include \masm32\include\masm32.inc includelib …

Member Avatar for GunnerInc
0
602
Member Avatar for Archenemie

I have just started looking at simple cryptography in order to learn python better. Encryptions and decryptions should be speedy and accurate so im hoping it will improve my programming skills. I recently wrote this quick script for a shift cypher but i wasnt sure how to be able to …

Member Avatar for Archenemie
0
228
Member Avatar for feoperro

Hi, I'm currently looking at password hashing and from what I've read so far, it seems pretty pointless. I read this [URL="http://phpsec.org/articles/2005/password-hashing.html"]article[/URL] which recommends using MD5 or SHA-1, however I Googled for decrypters and found them witin the first 3 results on Google. I don't quite understand the purpose of …

Member Avatar for feoperro
0
303
Member Avatar for Speleo

Hey all, I'm relatively new to python, just started learning it about a week ago. I've been working on making some small scripts to make learning easier for me. This is a cypher script I've been working on that is based off of the order of letters used on a …

Member Avatar for predator78
0
273
Member Avatar for terexberd

Hey i wanted to know if there's a program that shows u a pattern on how they got the number if i give them 3 examples? for Ex: 1) 35777903801230601 (Encrypted) = 46071642 (Decrypted) 2) 35777903248036801 (Encrypted) = 43975216 (Decrypted) 3) 35777903508068601 (Encrypted) = 91756761 (Decrypted)

Member Avatar for pseudorandom21
0
136
Member Avatar for cretaros

i managed to encrypt a password in wampserver but i also want to implement the same code in the login frame code so it can also encrypt what i have type so it became easy to be compared with the encryption in database, how to i embedd the code in …

0
55
Member Avatar for rohitamitpathak

I am working for encryption and decryption using rsa algorithm ,and adding my own concept in rsa, after rsa and padding i m getting a string like- 100011234A12300A12A231A234A981A for different input output string is increase... Is there any technique by use of that i can compact this string [ then …

Member Avatar for rohitamitpathak
0
172
Member Avatar for DAS-03590

I have a Mac notebook running Mac OS X Snow Leopard at my home owned by another in the family and for some reason it has been having problems with connecting to the wireless in the house. Network: TW CBL Modem to a Netgear N600 Wireless router NG N600 has …

Member Avatar for jingda
0
325
Member Avatar for ebanbury

Hi Hoping someone has some experience with this. I have an insert record which works perfectly, until I try and encrypt the passwords and set the date to NOW() When I submit the form - the form does not complete successfully, however a record of some kind is inserted into …

Member Avatar for tiggsy
0
125
Member Avatar for shyla

A file filter reads an input file, transforms it in some way, and writes the results to an output file. Write an abstract file filter class that defines a pure virtual function for transforming a character. Create one subclass of your file filter class that performs encryption, another that transforms …

Member Avatar for shyla
0
1K
Member Avatar for bhagawatshinde

Hi, i found an difficulties when Encryption and Decryption for Richtextbox data. I am developing an application project regarding educational software. In one form i am displaying one Richtextbox for saving the question in sqlserver. while savig i am decrypt it and save now when fetching the value from db …

Member Avatar for Momerath
0
92
Member Avatar for thunderbird24

hi everyone! this is my encryption routine (using standard call) in x86 Assembler __ASM{ encrypt: push ebp mov ebp,esp mov eax, [ebp+8] mov ecx, [ebp+12] push eax and eax,0xAA not al mov edx,eax pop eax and eax,0x55 xor ecx,edx xor ecx,eax rol cl,1 rol cl,1 mov eax,ecx sub al,0x20 pop …

Member Avatar for rubberman
0
265
Member Avatar for animanga

I'm attempting to create a one line Caesar cipher decryption program in python and i'm afraid i've come to the end of my knowledge and well past it. this is the closest working code i've got: [code]def test3(): print("The decrypted text is: "+"".join(map(lambda x: chr(ord(x)+y),x)))[/code] as you can see it …

Member Avatar for animanga
0
761
Member Avatar for Shuel

Hi, If anyone can help me with this would be very mych appreciated. My problem is I have a database full of users that has been built up over the years. The password field in the db is not been encrypted and the password is visible to all. I would …

Member Avatar for pritaeas
0
99
Member Avatar for lxXTaCoXxl

Okay, I have a menu Item that I only want to be enabled and visible if the user activates it through encryption key. My menu item is on a separate form than the encryption analysis and I can't figure out why it won't enable the item. It will pop up …

Member Avatar for lxXTaCoXxl
0
85
Member Avatar for lxXTaCoXxl

Okay so I have a few problems that I need help with. The main one being Multi Form Access. [B]Multi-Form Access:[/B] How would I go about accessing items in a secondary form. Like with .NET it would be: [code=]'.NET Syntax' formName.itemName.Enabled = true 'or' formName.itemName.Enabled = false[/code] However this isn't …

Member Avatar for Momerath
0
113
Member Avatar for lxXTaCoXxl

Okay I finally figured this out... Thanks to getting curious and creating an encryption key for my application. It took me a second to understand it but here is the result. Make sure you declare your variables in the settings tab of the properties to your application. [code] void Form1_Load() …

0
103
Member Avatar for kalaiselvi.v

i want to encrypt the password and store in the database. i extract character find ascii value of that and changed that value and stored in the database.but when i use this it wont have much security. can anyone help me for password encryption.i m using JSP+HTML

Member Avatar for meprasobh
0
1K
Member Avatar for terexberd

Hey i wanted to know if there's a program that shows u a pattern on how they got the number if i give them 3 examples? for Ex: 1) 35777903801230601 (Encrypted) = 46071642 (Decrypted) 2) 35777903248036801 (Encrypted) = 43975216 (Decrypted) 3) 35777903508068601 (Encrypted) = 91756761 (Decrypted)

Member Avatar for VernonDozier
0
213
Member Avatar for CathyP

Hi, I have a small business and am looking for an encryption system for my files and email that doesn’t change the end user’s experience. The ones I’ve seen online require the end user to log in, download this, etc. These are my clients so I don’t want to add …

Member Avatar for jholland1964
0
66
Member Avatar for vegaseat

Crypting with xor allows one to write one function that can encrypt and decrypt a file. In this example a text file is used, but it could be an image file as well. Once you have created the encrypted file you simply send it through the same function again to …

Member Avatar for TrustyTony
3
7K
Member Avatar for Frengerdany

Hi I have a problem with RSA encryption/decription of txt files, I have one method to create a pair of RSA keys and save them into a file, then i made two methods, one for encryt and one for decrypt, encrypt method works fine, but when I want to decrypt …

0
147
Member Avatar for dresposure

Hello everybody.... I am presently doing a project which involves secure file transfer. I want to implement The Tiny encryption algorithm in it(TEA). However I donno how it works.:(.......... Can anyone explain how it works?

Member Avatar for rubberman
0
334
Member Avatar for ausrasul

Hi, I'm trying to figure out a way to configure a Wireless Access Point (WAP) in a way that gives access to everyone and in the same time forbids packet sniffing and accessing each other computers. What I thought about so far is setting firewall rules on the WAP like …

Member Avatar for larieu
0
214
Member Avatar for desert564

Polybius Square is a table that allows someone to translate letters into numbers. To give a small level of encryption, this table can be randomized and shared with the recipient. In order to fit the 26 letters of the alphabet into the 25 spots created by the table, the letters …

Member Avatar for desert564
0
1K
Member Avatar for Buppy

Hi, i'm having a problem with AES encryption. I have 2 queries: [CODE] mysql_query("INSERT INTO table (secretfield) VALUES (AES_ENCRYPT('$secretvariable','12345'))") mysql_query("SELECT AES_DECRYPT(secretfield,'12345') as sf FROM table WHERE ID='$_SESSION[id]'"); [/CODE] With AES_ENCRYPT it works fine, it inserts encrypted values into the column, but when i use AES_DECRYPT, it returns a blank value. …

Member Avatar for carlodglozada
0
102
Member Avatar for Nat-PT

I am trying to get an IPv6 network communicate with an IPv4 problem but have been stuck on it for weeks to no avail. I wonder if anyone is kind enough to take a look at my running configs from both routers and see if they could lead me in …

0
31
Member Avatar for arun_taurean

Hi cryptographers, I'm currently working on AES.I have got codes for Encryption and Decryption separeately.But my problem is that i want to use a single function that is able to do encryption and decryption.If any codes available,please send it.

Member Avatar for arun_taurean
0
466
Member Avatar for arun_taurean

Hi guys, I'm looking for AES equivalent inverse cipher...Has any one worked on it.. I need a c code for it ... please it's really very urgent..

Member Avatar for jnawrocki
0
1K
Member Avatar for lttleastig

Good day i would like to ask how to make a login system the password is encrypted with the code below. [CODE]HashBytes('MD5', REVERSE(UPPER(@ID)) + @PW)[/CODE] thanks in advance

Member Avatar for ahmedelhamahmy
0
260
Member Avatar for mktr

i have a simple question: I want to define a hex character array in C, but I don't want to have to define the elements one at a time. my programme needs an hexadecimal array as input of 128 bits. for example, [code=c]unsigned char temp2[32]= {0x00 ,0x11 ,0x22 ,0x33 ,0x44 …

Member Avatar for Narue
0
7K
Member Avatar for altayar

Hello.. I am working on this project which is to use a matrix to encrypt a string& a text file and to decrypt them as well. The matrix that I need to use is this one, but I still don't know how to make it shift each character to the …

Member Avatar for JamesCherrill
0
212
Member Avatar for Kieran Y5

Hello, I have looked all over the Internet for the answer to this question. I know that, to send data to the server using SSL, you encrypt it using the servers public key. I also know that the private key is used to decrypt it. What I don't understand is …

Member Avatar for Momerath
0
95
Member Avatar for margeaux54

Finally , ı finished my simple program. I will learn very very much thing from you And ı will ask many many questions after this time:) So I will wait your suggestions about my program [ICODE] #include <iostream> using namespace std; void encyrpt(void); // Encyrpt function prototype void decyrpt(void); // …

Member Avatar for margeaux54
0
192
Member Avatar for WASDted

[ATTACH=RIGHT]19603[/ATTACH]I normally begin reviews with some background of the company or product I’m writing about but in this case let me say: every I.T. professional, programmer, developer, digital artist or person that carries their data and files around on a flash drive or disk needs an Imation Defender Biometric product. …

Member Avatar for happygeek
1
345
Member Avatar for margeaux54

There is little mistakes in this program. I couldnot understand. may be you can see. For example ı can not solve exit problem in menu function [CODE] #include <iostream> using namespace std; void encyrpt(void); void decyrpt(void); void menu (void) // this function provide to be reached to menu { char …

Member Avatar for Ancient Dragon
0
123
Member Avatar for mandy011

Hi all, I have implemented some code for simple columnar encryption. The algorithm is encrypting properly as I want. But during decryption it's giving me some errors. Please go through and suggest me if any idea [code] public static void encrypt(RandomAccessFile f,RandomAccessFile d,int columns) throws Exception { d.seek(10); // SEEK …

Member Avatar for mandy011
0
158
Member Avatar for margeaux54

This is my encyription and decyrption program. However there some mistakes that ı could not solve them. And ı set everything but when ı press q, my program should quit, ı tried some things but it is not appropriate for c++ rules. #include <iostream> using namespace std; void encyrpt(void); void …

Member Avatar for margeaux54
0
187
Member Avatar for margeaux54

ı could not solve non lvalue assignment problem in this example I thought for long time but ı could not find any answer if you can help me , ı would be very happy include <iostream> using namespace std; void encyrpt(void); void decyrpt(void); void menu(void) { char a; cout<<"(E/e) Encryption"<<endl; …

Member Avatar for margeaux54
0
150
Member Avatar for rude04

hello everyone,i need to make an encryption/decryption program and I'm almost finished, the problem is when i tried to add some gui an error about throwing exception keeps showing.. this is the code without the gui and it works just fine because the [B]throws Exception[/B] is in the main.. [CODE] …

Member Avatar for rude04
0
724
Member Avatar for a_salted_peanut

Hi all, Please bear with me on this as i have not long been learning how PHP works and am still learning VB.NET slowly. I have been testing the code for PHP using the Apache webserver. The problem i am having is, this is the function i am using with …

Member Avatar for DotNetNewbie5
0
2K
Member Avatar for schrope

help i can not figure this out. my home is to encryption a four digit number I have to add 7 and use mod 10-- i think i have that part but now i need to swap the first number with the third and second with the fourth. i can …

Member Avatar for Crutoy
0
183
Member Avatar for schrope

i am taking my first C++ class and i can not clear the following error can anyone help error C2447: '{' : missing function header (old-style formal list?) //christine gershen // Exercise 4.17: Encryption.cpp // Encrypts data given by user. #include <iostream> // required to perform C++ stream I/O #include …

Member Avatar for schrope
0
145
Member Avatar for Muhammadlodhi

Hi . I am coding the following program i will give the string my self and one is already given. given string = {a,b,c,d,3,f,g,h,i,6,j,k,l,m,9,n,o,p,q,2,r,s,t,u,v,w,x,y,z }, you are required to process an input string possibly less than 80 characters long, and an input +ive integer to encrypt the message: for example: …

Member Avatar for Muhammadlodhi
0
2K
Member Avatar for harysh

I am working on a project which is to provide a security between a android mobile device and server remotely. I know few of the techniques such as encryption mechanism and other security protocols, but the problem is that they are already being used. And for this project i want …

Member Avatar for harysh
0
171
Member Avatar for teppel

Hi all, I kind of new in C++ and my assignment require me to do some encryption on data. Found the AES file online can anyhow guide me how to use it ? Because when i compile the test.cpp it keep giving me exception not match error. And btw how …

Member Avatar for pseudorandom21
0
512
Member Avatar for Asen

I generate my xml into "variable string str" by using "dataset.GetXml" and then I write the "xml which is contained in variable str" into "file.xml" by using "sFile.WriteLine(str) while 'sFile' is a stream reader" My reason for using 'writeline' instead of 'dataset.WriteXml' because I need to encrypt the 'xml stored …

Member Avatar for Asen
0
196
Member Avatar for Speleo

Hey all, I'm relatively new to python, just started learning it about a week ago. I've been working on making some small scripts to make learning easier for me. This is a cypher script I've been working on that is based off of the order of letters used on a …

Member Avatar for bumsfeld
0
271
Member Avatar for vin24

Hi guys! I just want you to ask if their is an available decrypting software? Would you mind to suggest??? Thanx in advance :)

0
159
Member Avatar for lashbandi

Hi... i am trying to run this program...and it stays that it does not have a main method... public static void... but i have the public static final int... please let me know how i can get this program to run..thanks [CODE]public class CaesarCipher { public static final int ALPHASIZE …

Member Avatar for ztini
0
210

The End.