0
votes
3answers
85 views
PHP MD5 implementation
I'm currently attempting to code one for part of a college project - binary/hex handling and cryptographic functions are well regarded in the mark scheme, so I thought I'd kill two …
0
votes
2answers
77 views
Rijndael algorithm (Right side 8 bit padding issue)
Hi all,
We are creating sample application for windows mobile using Rijndael algorithm. Its working fine. But the problem is when we decrypt the data there is a 8 bit padding up o …
0
votes
1answer
29 views
How to sign a document in python with M2Crypto using particular padding technique?
I need to digitally sign some text in python using a private key stored in a .pem file. It seems like M2Crypto is the preferred way to do that these days, so that's what I'm using …
1
vote
4answers
109 views
Password encryption/ decryption code in C#.NET.
Hi All
I want simple encryption and decryption of password in C#.NET. how to save the password in encrypted format in database and retrieve as original format by decryption, kindl …
0
votes
2answers
29 views
Password encryption/decryption between classic asp and ASP.NET
I have 2 websites: one written in classic asp and another written in ASP.NET (1.1 framework). Both applications use a login mechanism to validate user credentials based on a shared …
1
vote
3answers
69 views
How can I generate a cryptographically secure pseudorandom number in C#?
Is there any fast implementation of cryptographically secure pseudorandom number generator (CSPRNG) for C# 3.0 (.NET Framework 3.5), for authentication tokens?
0
votes
3answers
69 views
Strength of RSA Encrypting an AES Key
I'm currently developing a system to transmit data between client and server, and was wondering what the strength of the encryption I planned to use was.
My thought was to have a …
0
votes
1answer
30 views
IPSec is hard to figure out, wanna help?
Hi, i need to fully understand the IPSec Phase 1 negotiation.
now, I break this to 3 steps:
1) Algorithm negotiations.
2) Key Exchange Data
3) Identification
I'm using wireshark t …
0
votes
4answers
48 views
MD5 on ASP Classic and .NET
I have a working .NET web application that perform hashing and encryption using MD5 on a certain string. This string will be stored in a cookie.
The problem is, I will need to val …
1
vote
3answers
32 views
How to get list of all countries and the encryption standard which is not allowed for that country
Hi,
I want to know the list of all countries and the encryption standard not allowed for that country.
Example: For some country encryption is not allowed. and for some count …
1
vote
4answers
75 views
How to test cryptography methods
I recently have a problem with a crypto library which produces bad md5 output. Instead of 32 digits it returns 30.
As we don't use unit test, this problem was quite a headache to …
5
votes
4answers
79 views
API authentication design and hackability
Question: Is this API authentication technique easily hackable?
apiKey = "123456789"
apiCallId = "1256341451"
apiSecret = "67d48e91ab2b7471d4be2a8c2e007d13"
sig = …
2
votes
5answers
110 views
How to store sensitive data (e.g. passwords, API keys) in Cocoa app?
I need to provide some passwords, API keys and similar sensitive data in my code. What are best practices in that regard? Hard-coded? SQlite? Some cryptographic framework?
1
vote
3answers
53 views
How to encode an RSA key using PKCS12 in Python?
I'm using Python (under Google App Engine), and I have some RSA private keys that I need to export in PKCS#12 format. Is there anything out there that will assist me with this? I'm …
2
votes
7answers
133 views
How to encrypt a string in .NET?
I have to encrypt/decrypt some sensitive information in a Xml file?
Yes I can do that by writing my own custom algorithms. I am wondering if there is already a built in way in .NET …
