Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
345 views

I come here with a little problem (sorry for my english this is not my mothertongue). I have a little malware project at school, globally I have a keylogger which create a file and then encrypt the ...
Aimasu's user avatar
  • 15
0 votes
1 answer
378 views

I have to make a small demonstration about encrypting text using the RC4 Algorithm. To do so, I chose to use Java in NetBeans. My code uses byte arrays for the permutation and the XOR operation. But ...
Sakura's user avatar
  • 1
0 votes
1 answer
110 views

I'm using a RC4 stream cipher to encrypt/decrypt data sent through a Java UDP client-server program. My code works as intended on the host program and displays the correct plaintext and ciphertext, ...
Zeffia's user avatar
  • 37
1 vote
1 answer
4k views

I have a task: Implement a program that encrypts a file using a strong symmetric cipher. After researching the requirements and features, I chose the RC4 algorithm and its implementation in the ...
Oleksandr's user avatar
  • 475
1 vote
1 answer
5k views

I have a productive Java application using Kerberos for SSO. After I update Java from version 16 to 17, I run into the following Error: Cannot find key of appropriate type to decrypt AP-REQ - RC4 with ...
flavio.donze's user avatar
  • 8,228
0 votes
0 answers
81 views

I wanted to learn how to use the TCL rc4 package .. the only documentation I can find are all just different sites with the same wiki, and the command example doesn't work. Example: % set keydata [...
dana's user avatar
  • 115
-3 votes
1 answer
651 views

I want to know how to decrypt a text without knowing the key used or the algorithm such as this text: RUE2RDRDMDE5OTpxci1hZG1pbi1yZWFkZXIxOjAwMDdDMUJBOEU4Q0IyOUQwNjg1RkJDRkMzMDdDMjc4:...
Student. Engineering's user avatar
0 votes
1 answer
289 views

First I disable the following things in windows server 2016. Triple DES cipher RC4 cipher TLS CBC Mode ciphers TLS 1.0 TLS 1.1 Then, I reboot the server. Finally, I call the web application which is ...
funbrain9's user avatar
  • 571
2 votes
2 answers
3k views

I'm trying to encrypt/decrypt some data in Go with RC4. I found that Go provides rc4 algorithm in crypto/rc4 package. I tried to encrypt/decrypt data using the package but ciphertext and decrypted ...
Pol4b's user avatar
  • 51
0 votes
2 answers
286 views

Please help me :(, I am trying this answer in this post Converting string to SecretKey But it doesn't seem to be working for RC4, please tell me what I am doing wrong. This is my RC4 class in a ...
Astoach167's user avatar
1 vote
1 answer
168 views

I'm fairly new to programming in python and have been tasked with creating a RC4 cipher in python. This implementation utilizes numpy. If someone could help me resolve this error in the cipher code it'...
novellnovell's user avatar
2 votes
1 answer
700 views

My goal is to implement the RC4 stream cipher in C/C++, and make sure it produces the same output as when using the openssl command. Following the pseudocode on wikipedia, this implementation appears ...
janos's user avatar
  • 126k
0 votes
1 answer
819 views

I am trying to create a R function that will take a seed,and key length to generate a RC4 keystream. The following is what I have so far: library(numbers) library(seqinr) library(...
Zaid Islam's user avatar
0 votes
0 answers
102 views

I have the follow code below to generate a scrambled state array, however, it does not seem to be generating the properly randomized state array for the key (51323). unsigned char* generateStateArray(...
Kaveen K's user avatar
0 votes
0 answers
1k views

Part of a training exercise I'm doing I need to decrypt data transmitted and saved in a pcap. I know the encryption is RC4 and I have the key which I know is correct I wrote a really basic python ...
Tavar's user avatar
  • 1
-1 votes
1 answer
6k views

I try to compile a C file which decrypts and executes an rc-4 encryped shellcode with virtual alloc. Now I get an error: "In file included from rc-4.c:2: rc4.h:62:11: fatal error: openssl/...
Silky 's user avatar
  • 53
1 vote
0 answers
197 views

I need to obfuscate sensitive information like email addresses written to visitor cookies on my website and was hopeful about RC4. But I had written a simple test to compare each character in strings ...
Randy's user avatar
  • 311
-1 votes
1 answer
788 views

I need to encrypt a file line by line using the RC4 algorithm without encoding the resulting byte array from the encryption. I saw a post on here about how to encrypt line by line and it works fine ...
Nikaselo's user avatar
-1 votes
2 answers
422 views

In short, I have a integer value about 10 digits long. I would like to encrypt it using rc4 algorithm in Java. I went online and search, but I could only find encryption for string values/plaintext. ...
Jack's user avatar
  • 17
1 vote
1 answer
2k views

I am working on trying to encrypt a text file via RC4 with a cpp file that I wrote with openssl/rc4 headers, and then decrypt via the command line to show that my implementation is correct. My ...
Chris's user avatar
  • 95
1 vote
1 answer
1k views

I've been trying to learn VBScript, and gave myself a bit of a challenge. I wanted to create a function in VBScript that encrypts something in RC4, and decrypts in Python (essentially the same process/...
Billy Thorton's user avatar
0 votes
1 answer
610 views

I turned off (set 0 value in "Enabled") AES 128\128 cipher, and SHA, SHA256, SHA384, MD5 hashes in windows server 2012 R2 registry (hosted on aws). Then I used command "Restart-Computer" and cannot to ...
Ustin's user avatar
  • 600
0 votes
1 answer
209 views

Does anybody know what exactly is protected by IP? Searching the RSA website for RC4 does not find any match. From the PDF 1.7 documentation: Note: RC4 is a copyrighted, proprietary algorithm of ...
be_mi's user avatar
  • 591
0 votes
1 answer
261 views

I'm trying to check a specific IIS configuration, which should reject weak SSL certificates. How would I go about creating an SSL certificate with either RC4 or DES encryption? I've tried using ...
Yoav Lavi's user avatar
  • 375
0 votes
0 answers
246 views

I am trying to decrypt a text which is encrypted with ARCFOUR cipher. But it is not giving me the desire output. My code: <?php $key = "25f9e794323b453885f5181f1b624d0b"; $data = "...
Ruhul Amin's user avatar