Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~808 People Reached
Favorite Forums
Favorite Tags
java x 1
Member Avatar for linsz

my name Randy im school in indonesia IT student batch 2007, i want to learn any language in program thx for your attention.... see ya....

Member Avatar for anamaria2513
0
30
Member Avatar for linsz

How to make with C language for Feistel Cipher coding... plis help me !!! im new bie

Member Avatar for Salem
0
407
Member Avatar for linsz

my name randy im IT student... in this semester i take computer network security, and i get the Feistel Cipher assignment... the lecture give the assignment is create feistel cipher program with any language... any other of you can help me with java language???? please thx

Member Avatar for mvmalderen
0
264
Member Avatar for linsz

public byte[] EncryptMyData (byte[] plainData, out byte[] encryptionKey)<-- what the mean of this??? { encryptionKey = Guid.NewGuid().ToByteArray(); int[] scheduledKey = AcedCast5.ScheduleKey(encryptionKey); long iv = AcedCast5.GetOrdinaryIV(scheduledKey); byte[] result = (byte[])plainData.Clone(); AcedCast5.EncryptCBC(scheduledKey, result, 0, result.Length, iv); AcedCast5.ClearKey(scheduledKey); return result; } public byte[] DecryptMyData(byte[] encryptedData, byte[] decryptionKey) { int[] scheduledKey = AcedCast5.ScheduleKey(decryptionKey); long …

Member Avatar for linsz
0
107