Tagged Questions

BouncyCastle is a cryptography API providing various cryptography, encryption, and security protocols. There are fairly similar libraries in both C# and Java that implement the API. Additionally, Bouncycastle provides a JCE-compliant crypto provider for Java.

learn more… | top users | synonyms

14
votes
7answers
11k views

scp via java

What is the best method of performing an scp transfer via the Java programming language? It seems I may be able to perform this via JSSE, JSch or the bouncy castle java libraries. None of these ...
9
votes
1answer
2k views

Is it possible to programmatically generate an X509 certificate using only C#?

We're trying to generate an X509 certificate (including the private key) programmatically using C# and the BouncyCastle library. We've tried using some of the code from this sample by Felix Kollmann ...
8
votes
2answers
1k views

Is Bouncy Castle API Thread Safe?

Is Bouncy Castle API (http://bouncycastle.org/java.html) Thread Safe ? Especially, org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher org.bouncycastle.crypto.paddings.PKCS7Padding ...
7
votes
2answers
421 views

How to use BouncyCastle in C# for Blowfish one-way hashing?

I've seen a ton of questions asked about Blowfish and C# and the usual answer is BouncyCastle. However, the project has basically no documentation and I can't find my way around the directory ...
7
votes
2answers
461 views

How to use bouncy castle API in J2ME using eclipse?

I am trying to import and use the bouncy castle API to encrypt and decrypt a MP3 file in J2ME using Eclipse. Even though I import cldc_sources.zip & CLDC_crypto.zip I'm getting ...
7
votes
3answers
3k views

Inserting Certificate (with privatekey) in Root, LocalMachine certificate store fails in .NET 4

I'm having problems inserting a new CA certificate with privatekey in the Root certificate store of the localmachine. This is what happens: //This doesn't help either. new StorePermission ...
6
votes
1answer
266 views

Bouncycastle: X509CertificateHolder to X509Certificate?

In versions prior to r146 it was possible to create X509Certificate objects directly. Now that API is deprecated and the new one only deliveres a X509CertificateHolder object. I cannot find a way to ...
5
votes
1answer
768 views

BouncyCastle installation problems

I'm trying to add BouncyCastle as a security provider on Windows XP Pro so I can use it to add some certs to an Android application per the instructions here. Unfortunately I can't get it to add the ...
5
votes
2answers
2k views

How to import DSA signature in ASN.1 format using BouncyCastle (C#)

OpenSSL, as well as most other DSA implementations, outputs signatures in ASN.1 format. Thus, the 40-byte signature (two 20-byte integers) becomes 46 bytes due to the ASN.1 structure headers. (See ...
4
votes
1answer
204 views

Digital Signature with BouncyCastle

I tried to sign a byte[] (which is my sha256 digest of my document) with bouncy castle and a certificate in this specification : ...
4
votes
2answers
565 views

Sign CSR using Bouncy Castle

I cannot find any code/doc describing how to sign a CSR using BC. As input I have a CSR as a byte array and would like to get the cert in PEM and/or DER format. I have gotten this far def ...
4
votes
2answers
129 views

Unique Identifier for certificate Issuer (X509Name)

in my app I'm using the sha256 of the issuer Name (x509CertImpl.getIssuerDN().getName()) and the certificate serial number to uniquely identify a certificate, but now I have realized that other ...
4
votes
2answers
187 views

Why doesn't my key identifier match?

I'm attempting to decrypt an S/MIME email (sent originally via Outlook), and to do that, I'm using the bouncycastle API. I'm running into a snag, though. I have, in the Windows certificate store, the ...
4
votes
2answers
918 views

Implementing Bouncy Castle Cipher Algorithms with Android

How can I use the Bouncy Castle provider to implement algorithms such as Serpent and Twofish, because Sun's providers don't implement these at all. I know when multiple providers can implement the ...
4
votes
3answers
203 views

Cryptography and Authentication via TLS with Web of Trust in Java

For a program I am writing, I would like to use TLS (or something similar) to encapsulate my application's protocol. This will minimize both the amount of work I have to do as well as the number of ...
4
votes
1answer
1k views

Get Start with BouncyCastle crypto dll c#

I'm starter with cryptography I woul like to use BouncyCastle .dll for c# but I cannot found documentation and examples. In particulary I need to use to sign files with pkcs#7 (.p7m results) and add ...
4
votes
2answers
2k views

Verifying PKCS#7 certificates in Java

Need some help with crypto routines in Java. Given a PKCS#7 signature, I want to verify all certificates it contains against a trusted store. I assume that all certificates contained in signature are ...
4
votes
3answers
3k views

How to use Bouncy Castle lightweight API with AES and PBE

I have a block of ciphertext that was created using the JCE algorithim "PBEWithSHA256And256BitAES-CBC-BC". The provider is BouncyCastle. What I'd like to do it decrypt this ciphertext using the ...
4
votes
4answers
309 views

Can a product that uses BouncyCastle be exported from the UK [closed]

We are doing work for a company, based in the UK, who are planning on developing an application that uses the BouncyCastle.Crypto.dll. They intend to make their product (including the crypto dll) ...
4
votes
2answers
2k views

How to read a password encrypted key with java?

I have private key stored in file in PKCS8 DER format and protected by password. What is the easiest way to read it? Here is the code I use to load unencrypted one: InputStream in = new ...
4
votes
3answers
3k views

How can I create an SHA512 digest string in Java using bouncy castle?

This unit test is failing: public void testDigest() throws NoSuchAlgorithmException { String hashExpected = ...
4
votes
1answer
1k views

BouncyCastle Last Byte Decrypt Problem

I am decrypting an XML file from the file system using Bouncy Castle. I output the decrypted text and get a fatal error SAXParseException on the very last byte of data. Below is my decryption method ...
4
votes
3answers
5k views

BouncyCastle RSAPrivateKey to .NET RSAPrivateKey

I'm creating a certificate distribution system to keep track of clients and stuff. What happens is: Client send CSR to Server Server checks and signs certificate Server sends Signed certificate to ...
4
votes
6answers
4k views

How do I get started using BouncyCastle?

So after CodingHorror's fun with encryption and the thrashing comments, we are reconsidering doing our own encryption. In this case, we need to pass some information that identifies a user to a 3rd ...
3
votes
1answer
247 views

Jsch with spongycastle rather than bouncycastle on Android

I currently have an Android application connecting to my router via ssh using a password. I'm looking to improve this so I can use keys but I am having real issues. From what I understand the version ...
3
votes
1answer
85 views

How to generate multi-domain (UCC) certificate in Java?

Currently I'm using the BouncyCastle library to generate a certificate. Something like this: X509V3CertificateGenerator certGenerator = new X509V3CertificateGenerator(); certGenerator.setIssuerDN( ...
3
votes
1answer
113 views

Encryption and Decryption with randomly generated key?

I'm a j2me programmer. My project is related to sending data to server via HTTP method. I encrypt the data in j2me side using Bouncy Castle (Triple DES). I also maintain the server side coding. Then ...
3
votes
1answer
1k views

Elliptic Curve Cryptography (ECC) with bouncy castle for asymmetric encryption

I want to use ECC in order to exchange a Session Key for a long-term data transmission. This key exchange should be encrypted using ECC-192bit (curvename: prime192v1). That means that i want to ...
3
votes
2answers
1k views

x509 C# examples?

I've been pouring through article after article on x509 cert creation, signing, etc. but I've yet to find a solution to my problem - wondering if anyone can point me in the right direction because I'm ...
3
votes
1answer
4k views

AES Encryption/Decryption with Bouncycastle Example in J2ME

i want to Encrypt and Decrypt data in J2ME using AES Algorithm with bouncy castle can any one give me sample code for that i want to use ECB with PKCS5Padding Thanks in Advance.
3
votes
1answer
3k views

How to encrypt a string/stream with bouncycastle pgp without starting with a file

I need to encrypt a stream with pgp using the bouncycastle provider. All of the examples I can find are about taking a plain text file and encrypting that however I won't have a file and it's ...
3
votes
1answer
785 views

PBKDF2 in Bouncy Castle C#

I've being messing around the C# Bouncy Castle API to find how to do a PBKDF2 key derivation. I am really clueless right now. I tried reading through the Pkcs5S2ParametersGenerator.cs and ...
3
votes
4answers
3k views

Hash String via SHA-256 in Java

By looking around here as well as the internet in general, I have found Bouncy Castle. I want to use Bouncy Castle (or some other freely available utility) to generate a SHA-256 Hash of a String in ...
3
votes
3answers
5k views

Java Bouncy Castle Cryptography - Encrypt with AES

How do I AES encrypt with the java bouncy castle library? Example code or a link to example code would be nice :)
3
votes
4answers
6k views

An example of encrypting an xml file in Java using bouncy castle

Can anyone show me (or provide a link to) an example of how to encrypt a file in Java using bouncy castle? I've looked over bouncycastle.org but cannot find any documentation of their API. Even just ...
3
votes
4answers
4k views

Encrypting a BouncyCastle RSA Key Pair and storing in a SQL2008 database

I have a function that generates a BouncyCastle RSA key pair. I need to encrypt the private key and then store the encrypted private and public keys into separate SQL2008 database fields. I am using ...
2
votes
0answers
103 views

PBKDF2 with bouncycastle in Java

I'm trying to securely store a password in a database and for that I chose to store its hash generated using the PBKDF2 function. I want to do this using the bouncy castle library but I don't know why ...
2
votes
1answer
68 views

X.509 Certification for Android

Just a little background on my project: I'm implementing an SMS encryption program using ECDH for Android (BouncyCastle) and I need to send my public keys over SMS. Functionality wise, all is up and ...
2
votes
1answer
90 views

verifying detached signature with BC

How can I verify a detached signature (CMS/pkcs #7 signature) using the BouncyCastle provider in Java? Currently, my code below throws an exception with the message message-digest attribute value ...
2
votes
0answers
176 views

need help understanding certificate chains

At the moment I am writing a java library to access the REST API of pointhq.com. While developing a Android client I realized that the SSL certificate is not accepted by default so I wrote a custom ...
2
votes
3answers
510 views

How can I sign a file using RSA and SHA256 with .NET?

My application will take a set of files and sign them. (I'm not trying to sign an assembly.) There is a .p12 file that I get the private key from. This is the code I was trying to use, but I get a ...
2
votes
1answer
143 views

SMTP client using BouncyCastle's lightweight TLS API

I need to add TLS support to a simple Java-based SMTP client. The client implements the SMTP protocol over java.net.Socket, i.e. it does not use Java Mail or other high level APIs. I would like to ...
2
votes
0answers
148 views

How can Android leak memory while the App's memory remains stable

Android runs out of memory and restarts applications even though the amount of memory that Runtime reports that it is using remains nearly constant. How can an Android phone run out of memory when ...
2
votes
1answer
169 views

How do you generate a PBEKey for Serpent in Java?

I'm trying to support PBE for AES, Serpent, and TwoFish. Currently I am able to generate an AES PBEKey in Java using BC like this: SecretKeyFactory factory = ...
2
votes
1answer
301 views

Use Bouncy Castle library with .NET Compact Framework

I’m trying to use Bouncy Castle v1.7 on a Windows Mobile 6.5 device. I’m trying to execute the following code: ISigner signer = SignerUtilities.GetSigner("SHA256withRSA"); Using the Bouncy Castle ...
2
votes
2answers
102 views

how to compare distinct implementations of java.security.cert.X509Certificate

I'm using bouncycastle org.bouncycastle.jce.provider.X509CertificateObject and sun.security.x509.X509CertImpl in different parts of my app, and sometimes I need to compare them for equality, equals() ...
2
votes
2answers
168 views

Java verify Certificate is associated with a Key

I have a Certificate and a PrivateKey that I've received from different places. Given just these two abstract objects, can I verify that the Certificate is associated with, or is the Certificate for ...
2
votes
1answer
1k views

“Not trusted Server Certificate” in Android 2.2 but not 3.0

I'm using the BouncyCastle provider and Apache HttpClient to trust an SSL certificate, as described by Antoine Hauck here. The app I've made targets Android 1.5, and works fine on the emulator and a ...
2
votes
1answer
74 views

can I get ProcessBytes to return an exact amount?

am using BouncyCastel to make a CfbBlockCipher so here is the codes. using System; using System.Collections.Generic; using System.Linq; using System.Text; using Org.BouncyCastle.Crypto; using ...
2
votes
1answer
308 views

BouncyCastle PGP and McAfee eBusiness Server 8.6 Incompatibility

I have been banging my head against the wall now for a couple of weeks trying to figure out why our bank cannot decrypt a message that has been single-pass signed and encrypted using BouncyCastle PGP. ...

1 2 3 4 5 7