0
votes
1answer
24 views

How decrypt keccak algorithm

I prepare a presentation for keccak algorithm, we have a text that wants to encrypt,I have some questions: What is the exact role of the padding function (how from 64 bit we obtain a cube of 1600 ...
0
votes
0answers
36 views

Correct way to sign and verify signature using bouncycastle

I am using bcmail-jdk16-1.46.jar and bcprov-jdk16-1.46.jar (Bouncycastle libraries) to sign a string and then verify the signature. This is my code to sign a string: package my.package; import ...
0
votes
1answer
19 views

Hill cipher implementation when results are not expected

I am working on some ciphers (just theory, no coding yet). Currently I am doing the hill cipher and I can use it fine. However I have came across a problem which has stumped me. Say for example I ...
0
votes
1answer
19 views

Bad pad corrupt error in ANDROID encrypted in Java project

I am ecrypting the data in java(Java project using AES) and want to decrypt the data in android but I am getting bad pad corrupt error.If same is run on java project its woking.Java project and ...
0
votes
1answer
24 views

Is there a way to form secure connections without trusted third parties?

I've just recently learned a bit about how encrypted messages are sent across the Internet, and it seems that it relies a lot on "trusted third parties" My problem is that I don't trust anyone, is ...
2
votes
2answers
35 views

java encrypt and decrypt using key pair?

does anyone know how to encrypt and decrypt a string object using RSA public and private keys? i have created private and public keys below using KeyPair generator but i now want to use the public ...
0
votes
5answers
50 views

How to Encrypt password using PHP Script [duplicate]

How to Encrypt password in PHP, i am using below code to insert data into database using PHP code and i am able to store new member data but now i just want to encrypt user password.. PHP Script:: ...
-1
votes
0answers
16 views

Which algorithm encrypt byte array with public key (modulus , exponent) in c# [closed]

I want to encrypt array byte for example {0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8} I want to encrypt the array with public key (modulus AND exponent) Please help me
-6
votes
0answers
34 views

How to encrypt the a string with a public key? [closed]

I want to encrypt the bytes of a string in c# with a modulus and an exponent. Why is there a different result from RSACryptoServiceProvider in C#
0
votes
1answer
38 views

What is secured way to store symmetric key AES? [closed]

I am implementing AES. Encryption will take place on server side and decryption on client side. What is the secure way to store the key and pass it to client side? Will I need to store in notepad or ...
0
votes
2answers
27 views

AES key wrap encryption

I need crypto-algorithm AES in key wrap mode. Is there some open-source library or implementation that could be helpful? It is important, that it must be key wrap mode.
0
votes
0answers
24 views

Is it possible to use C# with Salsa 20/12 so that Intel/AMD SSE2 acceleration is used? [duplicate]

I'm interested in the eStream project and using C# to encrypt / decrypt data streams with Intel/AMD acceleration. How can I use C# to interact with Intel/AMD hardware so I can get the following ...
1
vote
3answers
40 views

remember password functionality in python

basically, I want to have a login box, and the option to remember the password next time you log in. I know there are encryption modules out there, but they require a password to work in the first ...
1
vote
1answer
64 views

Bad Data: Cryptography C#

I am new to C# and cryptography and I've made up the below code by picking up data from various sources like CodeProject and StackOverflow. public class CryptoSafe { private const int SaltSize = ...
-1
votes
2answers
68 views

How can I detect that a key has been reused in one-time-pad encryptions?

I have 20 OTP ciphertexts which I know were encrypted with only 19 distinct keys, so 1 key has been reused. Also only two different messages, with the same length, were encrypted. I know that if I ...
0
votes
0answers
37 views

How to solve CWE-321: Use of Hard-coded Cryptographic Key? [closed]

I am trying to protect the key used to encrypt / decrypt values in my C# app. My code is: Private Shared key() As Byte = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, ...
0
votes
0answers
25 views

What are the default cipher modes for .NET, Java, php and python?

I'm putting together a crypto document and I can't find documentation stating what the default cipher modes(ECB, CBC, etc..) are for .NET, Java, php and python. So pretty much if you don't define a ...
2
votes
3answers
96 views

Java: simulating a stream cipher with AES/CTR

I'm writing an application server and I've decided to use AES128/CTR/NoPadding to secure connections, as it's considered to be secure enough without having to expand the bytes to the block boundary ...
1
vote
2answers
33 views

How to Verify the Identity of the Caller of a Web Service

I have a server which is composed of a page and a web service. The web service is intended to be used by a Windows Phone mobile application that I will develop myself. Now, my question is, how do I ...
0
votes
1answer
83 views

Using node.js to decrypt data encrypted using c#

I'm facing a issue now which need you guys help. I use c# to do some encryption. Then need to use node.js to decry-pt it. But I just found that I can't do it correctly base on my c# encryption ...
0
votes
0answers
40 views

Windows Phone Application and Certificates

I am developing a Windows Phone application which will be demonstrated in the Windows Phone emulator. Now, my application communicates with a server which requires digital certificates. Is it ...
0
votes
1answer
161 views

C# - Encrypting and Decrypting Data using RSA

I have the following code in C#: Main Class X509Certificate2 cert = new X509Certificate2("C:/test.pfx", "hello", X509KeyStorageFlags.Exportable | X509KeyStorageFlags.PersistKeySet); ...
2
votes
1answer
108 views

Asymmetric Encryption and Decryption

Let us say that I use the algorithm on this site to encrypt and decrypt data with public-private keys: Public Key RSA Encryption in C# .NET on CodeProject Now, let us say that someone encrypts his ...
1
vote
1answer
30 views

Clarification on Digital Certificates

I used the makecert tool to create: self-signed certificate client certificate These are the commands I used: makecert -n "CN=MatthewCA" -r -sv MatthewCA.pvk MatthewCA.cer **for self signed ...
0
votes
1answer
61 views

Node.js crypto module

I am trying to implement encryption in node.js using the crypto module. Below is a snippet of my code: var SECRET_KEY = "RANDOMKEY"; var crypto = require("crypto"); var MD5 = ...
2
votes
3answers
165 views

How would an efficient OAuth2.0 server / provider work?

I may need to implement an OAuth2.0 server for an API I'm creating. This API would allow 3rd parties to perform actions on the user's behalf. OAuth2.0 has 3 mains calls. First, there is a call to ...
0
votes
1answer
28 views

Where does makecert.exe store the digital certificate

I created a self-signed certificate and a client certificate using this tutorial and the makecert.exe tool: http://msdn.microsoft.com/en-us/library/ff647171.aspx However, when I go to MMC and try to ...
0
votes
0answers
26 views

Do I need to notify DoD if I use an unmodified crypto-js library? [closed]

If I am using the library here: https://code.google.com/p/crypto-js/ Is it necessary to notify the DoD of the use on my website because of ITAR and export laws? I'm just trying to clarify. I was ...
-1
votes
2answers
44 views

Salting with AES

I'm a bit of an encryption newbie, but need to encrypt sensitive personal data before storing in a database. I was planning to use AES with CBC, but also wanted to use a salt. I couldn't however find ...
2
votes
1answer
227 views

Encrypt file using hill cipher and java?

As we know, Hill cipher is a classical cipher in cryptography. Hill cipher most mostly used for encrypting text. I need to encrypt file (such as .doc, .ppt, .jpeg, etc), not the contents of file. I ...
-1
votes
1answer
76 views

is there any programing language independent cryptography algorithms? [closed]

I am developing a licensing block for a project, the QT desktop program creates a product ID and the user must enter this ID in an asp.net web site to produce an Activation Key, this activation key ...
-1
votes
0answers
56 views

how to decrypt an AES encryption with known key and iv [closed]

I have been searching for a tool to decrypt an AES encrypted file for about 4 hours now. I have the key and the iv used for the encryption and I also know that the algorithm used was AES cbc mode with ...
-1
votes
0answers
24 views

What other steganalysis packages are available besides Ben4 and VSL? [closed]

I am looking for steganalysis packages. I prefer free packages. Thus far, I've found Ben4 and VSL. Are there any other packages that I should be aware of?
0
votes
0answers
30 views

Cryptography - Security of RijndaelManaged algorithm and where to store keys [duplicate]

I have the following code to encrypt and decrypt data using the RijndaelManaged in .NET. public string EncryptString(string ClearText) { byte[] clearTextBytes = Encoding.UTF8.GetBytes(ClearText); ...
1
vote
2answers
111 views

How long would it take to factor a RSA 128-bit key length? [closed]

Ive done some research online and it seems to suggest the recommended key length for RSA encryption is 1024-bits. However i have a question as to how long would it take to factor a 128-bit RSA key ...
0
votes
1answer
32 views

Where does openssh decrypt and react to received packets?

I am trying to add a second layer of encryption (encrypted on the client side, and decrypted on the server side). EDIT: I apologize if I wasn't clear. I was looking for the function in the OpenSSH ...
1
vote
1answer
98 views

Encrypt in ASP.NET MVC4

I want to encrypt some users confidential data using AES algrotitm in System.Security.Cryptography and store it in Database. So my question is how I should store keys for decode private data. And ...
0
votes
2answers
39 views

How to store my symmetric key in Rails

I would like to store encrypted data in my db as well as its signature so that I could read it back at another time. How do I store the symmetric key used for encryption safely?
2
votes
1answer
189 views

Public Key Crypto with Private Key Encryption

I'm trying to implement the following in C#: I want a Generator that internally houses a public-key encryption routine. It can take a byte array that's provided to it (usually by a Client described ...
1
vote
1answer
44 views

Prevent Padding is Invalid Exception when Brute Forcing

Im using this code to decrypt AES data: public static String decrypt(String ciphertext, String password) { byte[] cipherdata = System.Convert.FromBase64String(ciphertext); byte[] iv = new ...
4
votes
4answers
162 views

Recommendation for hashing/encryption technique

Description of problem: I'm in the process of working with a highly sensitive data-set that contains the people's phone number information as one of the columns. I need to apply (encryption/hash ...
0
votes
2answers
105 views

Password Encrypting [duplicate]

I am trying to write a password encryption class that I can use to encrypt and store user passwords. I want to make sure that I am doing this correctly. This code works fine and appears to generate an ...
0
votes
1answer
87 views

How do I generate decryption keys for the IDEA algorithm from the 128 bit key?

I am trying to implement IDEA algorithm in C#, just to learn how it works. I have taken a 128 bit binary key and generated the 52 encryption keys using the following code: static ushort[] ...
1
vote
0answers
55 views

Get public key bits in OSX from generated pair keys [duplicate]

This method is used to get public key bits in iOS. - (NSData *)getPublicKeyBits { OSStatus sanityCheck = noErr; NSData * publicKeyBits = nil; NSMutableDictionary * queryPublicKey = ...
0
votes
1answer
65 views

Specify padding for creating digital signature on OSX

In iOS there is method SecKeyRawSign() to generate signature , that let you specify padding type. OSStatus SecKeyRawSign ( SecKeyRef key, SecPadding padding, const uint8_t *dataToSign, ...
1
vote
2answers
220 views

Is it vulnerable to ASP Padding oracle

When I open chat.mysite.com/WebResource.axd?d=jzjghMVYzFihd9Uhe_arpA2 It gives me: Padding is invalid and cannot be removed. When I open chat.mysite.com/WebResource.axd?d=acunetix It gives me: ...
-1
votes
3answers
217 views

How to import a Public Key into RSA For decryption

This may seem like a stupid question but I have been searching for the last hour and a half. I have a message that is encrypted with a PRIVATE KEY of a RSA key pair. I have the PUBLIC KEY that I need ...
2
votes
1answer
76 views

Why is it recommended to make crypto algorithms public?

Cryptography books say that you should expose your encryption/decryption algorithm to test it against attacks and cryptanalysis, and the non-exposed algorithm is not considered strong as it is not ...
0
votes
1answer
134 views

Android AES Encryption Error Pad Block Corrupted

I have 3 classes: AESCrypt ChooseMasterPasswordActivity UnlockPocketActivity I sucessfully add data to SQLite database, but I have problem with decrypting data from database. I get this error: ...
0
votes
2answers
41 views

I require fastest(only to check whether two data are same or not) Cryptographic hash function I am using CRC32 is it good than other hash functions? [closed]

I want to check whether two data has same value so i am using CRC32 is it good than other hash functions. I don't require security. I am writing hash value in file and checking with another hash value ...

1 2 3 4 5 18