Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 810 results for
aes
- Page 1
Re: AES library, easy?
Programming
Software Development
13 Years Ago
by Narue
AES
isn't especially difficult to implement from the specification. Ignoring …) { // Add null padding to the input (modulo 128-bits for
AES
) while (bytes.size() % 16 != 0) bytes.push_back(0); } bytes_t aes_provider…
AES
Programming
Software Development
15 Years Ago
by mebob
for my own satisfaction, im trying to make a program that does
AES
encryption, but ive run into a problem: i cant find an efficient way to us the s-box, and i would rather not have a switch statement with 256 cases. what could i do to do this effieciently.
Re: AES
Programming
Software Development
15 Years Ago
by mebob
no, the
aes
s-box, used in the SubBytes step: [url]http://edipermadi.files.wordpress.com/2008/03/sbox.png[/url]
AES
Programming
Software Development
14 Years Ago
by arun_taurean
I'm studying
AES
,Can u give me the C code for it...I googled but the code there shows lot of error....pls its urgent
aes decryption error
Programming
Software Development
14 Years Ago
by AlBars
….Unicode.GetBytes(salt));
aes
= new AesManaged(); //
aes
.Padding = PaddingMode.ANSIX923;
aes
.KeySize = 256;
aes
.BlockSize = 128;
aes
.Key = rfc2898.GetBytes(
aes
.KeySize / 8);
aes
.IV = rfc2898.GetBytes…
AES decrypt with wrong key gets an exception....
Programming
Software Development
14 Years Ago
by AcidG3rm5
… * /* The algorithm used in this system is
AES
. * /* The original version of the algorithm is…* /* http://java.sun.com/developer/technicalArticles/Security/
AES
/AES_v1.html* /* * /*******************************************************************************/ //to convert hexString…
Re: AES Encryption Logic
Programming
Software Development
16 Years Ago
by kvprajapati
… javax.crypto.spec.*; import java.io.*; public class
AES
{ public static String asHex (byte buf[]) { …following results encrypted string: 91369a3b74c6feede0eff48fcf004f67d26cdd0b4907b44fd2147a4077ded0d1 Original string:
AES
still rocks!! 414553207374696c6c20726f636b732121 When the message has …
AES Encryption Logic
Programming
Software Development
16 Years Ago
by neutralfox
…main(String[] args) throws Exception { String message="
AES
still rocks!!"; // Get the KeyGenerator KeyGenerator kgen… following results encrypted string: 91369a3b74c6feede0eff48fcf004f67d26cdd0b4907b44fd2147a4077ded0d1 Original string:
AES
still rocks!! 414553207374696c6c20726f636b732121 When the message has been…
Re: AES Encryption Logic
Programming
Software Development
16 Years Ago
by neutralfox
…;-------------------- Exception in thread "main" java.security.InvalidKeyException: Invalid
AES
key length: 6 bytes at com.sun.crypto.provider.AESCipher….Cipher.init(DashoA13*..) at javax.crypto.Cipher.init(DashoA13*..) at
AES
.main(
AES
.java:48) Process completed. Is there a way for…
Re: AES Encryption Logic
Programming
Software Development
15 Years Ago
by andyc2002
Hi all, I am a newbie on
AES
. I know from the
AES
that it has some procedures such as AddroundKey, SubByes, ShiftColumn. Would you tell me that where the procedures in the code? I only see that use the same key and 128 bit size in the code...
Re: AES Encryption Logic
Programming
Software Development
16 Years Ago
by neilcoffey
…://www.javamex.com/tutorials/cryptography/symmetric.shtml"]example of
AES
encryption[/URL]. Note that if you do generate the key…
Re: AES Encryption Logic
Programming
Software Development
10 Years Ago
by vignan_binayak
Can anyone suggest me how to do the
AES
ENCRYPTION of 16byte hex random number ?? and also how to generate a 16byte hex number randomly .
AES encryption problem
Programming
Software Development
15 Years Ago
by Kruptein
…have found a module pycrypto which has an
AES
encryption and decryption function, in commandline everything works… in my program, it fails =( [code=python]def
aes
(txt): global crypt message="".join(txt) #format…at least 16 characters. plist+=str(c) obj=
AES
.new(plist[:16],
AES
.MODE_ECB) if crypt == "en":…
Re: AES encryption problem
Programming
Software Development
15 Years Ago
by Kruptein
… can follow a bit, suppose someone encrypts a text with
AES
and get as output:\xb4\xe0\xa0lh/\xefo\xc9|y7… get the original text and wants to decrypt it with
AES
, he inserts as text \xb4\xe0\xa0lh/\xefo\xc9|y7…
aes implementation
Programming
Software Development
14 Years Ago
by flaviusilaghi
… program to crypt a text entered from the keyboard whith
aes
256 , but i have problems when i try to split…<conio.h> #include <string> #include "
aes
.h" using namespace std; int main(int argc, char…
AES header file need help
Programming
Software Development
14 Years Ago
by teppel
… require me to do some encryption on data. Found the
AES
file online can anyhow guide me how to use it… Daemen and Vincent Rijmen as a candidate algorithm for the
AES
. //The cipher has a variable block length and key length…
Re: AES equivalent inverse cipher
Programming
Software Development
14 Years Ago
by arun_taurean
…'s really urgent.......Hope you have worked on
AES
.... [CODE]#include<stdio.h> #…char RoundKey[240]; // The Key input to the
AES
Program unsigned char Key[32]; int getSBoxInvert(int num…function call decrypts the CipherText with the Key using
AES
algorithm. InvCipher(); // Output the decrypted text.…
Re: AES equivalent inverse cipher
Programming
Software Development
14 Years Ago
by arun_taurean
…it's really urgent.......Hope you have worked on
AES
.... [CODE] #include<stdio.h>…char RoundKey[240]; // The Key input to the
AES
Program unsigned char Key[32]; int getSBoxInvert(int … call decrypts the CipherText with the Key using
AES
algorithm. InvCipher(); // Output the decrypted text.…
Re: aes implementation
Programming
Software Development
14 Years Ago
by flaviusilaghi
sory , i mean
aes
256
Re: aes implementation
Programming
Software Development
14 Years Ago
by VernonDozier
…]; // add 1 for null term }[/code] If you are using
AES
, you probably have no use for strings, but the point…
Re: AES equivalent inverse cipher
Programming
Software Development
14 Years Ago
by jnawrocki
Here's java script for straight-up
AES
. It should be easy to converted to C. It is not inverse but there are plenty of explainations on the web. [url]http://www.movable-type.co.uk/scripts/
aes
.html[/url]
AES Security
Hardware and Software
Networking
16 Years Ago
by Catalana
Can somebody tell me what
AES
is and if I need to set my network with it?
Re: AES Security
Hardware and Software
Networking
15 Years Ago
by lskersey
… secured connection, but the network page says my security is
AES
. Does that mean I have both?
Re: AES Security
Hardware and Software
Networking
15 Years Ago
by lskersey
I set a WPA2 password with this router. The internet connection window says I'm using a WPA2 secured connection, but the network page says my security is
AES
. Does that mean I have both?
AES Implementation in C...Annoying Error
Programming
Software Development
15 Years Ago
by shahab.burki
I am doing some
AES
encryption using C. But the errors ocurred. The code is …
AES Encyption
Programming
Software Development
15 Years Ago
by shahab.burki
I have problems in decrypting the text using
AES
in C. the code is belwo. [CODE]#include <stdlib.…
AES Algorithm in shell script
Programming
Software Development
14 Years Ago
by teenybopper
Hello, I need to write a shell script that performs encryption and decryption using
AES
algorithm. I could not find any resource online, can anyone please help me in the right direction? Thank you for the help!
AES equivalent inverse cipher
Programming
Software Development
14 Years Ago
by 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..
AES library, easy?
Programming
Software Development
13 Years Ago
by pseudorandom21
Is there a library that's easy to setup and use with Visual Studio 2010 for
AES
encryption/decryption? I've been fiddling with CryptoPP and it's endless link errors and iterator_level_not_equal error messages for an hour now, so I think it's time to look for an installer or a new lib. Any suggestions?
Aes encryption with c++
Programming
Software Development
13 Years Ago
by newbie1234
I want to encrypt my 128 bit string using
AES
encryption. example 128 bit string = "A#$RFDE%t^&jhy*i" with 128 bit key = "CDF$#%Tgfvb^%&$C" [url]http://www.cryptopp.com/[/url] Is here any help to encryption. I gone through crypto++ library. But it seem tough to understand.
1
2
3
14
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC