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.
1
vote
0answers
10 views
When using bouncy castle as crypto provider and GCM, cipherOutputStream.close() doesn't seem to throw invalidCipherTextException
When using Bouncy Castle as the provider and GCM if I have deliberately modified the cipher text an invalidCipherTextException should be thrown and if I step through in debug mode on ...
1
vote
2answers
113 views
Validate TLS server certificate with BouncyCastle's “lightweight” API
I'm using Java BouncyCastle so-called "lightweight" API to establish a TLS connection over a TCP socket.
I want to verify server-provided certificate chain being signed by one of trusted CAs. Sounds ...
1
vote
2answers
48 views
SecurityException with Bouncy Castle [duplicate]
I am on Mac OS and getting this issue after performing software update on my mac.
Caused by: java.lang.SecurityException: JCE cannot authenticate the provider BC
at ...
0
votes
1answer
38 views
Cannot export generated certificate with private key to byte array in .net 4.0/4.5
I need to export and import generated certificates with private keys to and from byte arrays and I don't have any problems unless I use .NET framework 4.0 and 4.5. I'm generating self-signed ...
0
votes
2answers
81 views
Creating Custom X509 v3 Extensions in Java with Bouncy Castle
I have successfully used the X509v3CertificateBuilder Java class from Bouncy Castle to create X509 certificates with standard V3 extensions. I am now trying to create certificates with custom ...
0
votes
0answers
28 views
Adding attributes to certificate request, java + bouncycastle 1.48
I'm currently working on creating attribute certificate requests using bouncycastle 1.48. Since there were some changes in API (and I'm beginner in this matter) I am unnable to add attributes to ...
1
vote
0answers
61 views
Parallelizing AES GCM in BouncyCastle
I'm using AES-GCM with the BouncyCastle provider in Java and it works fine. The NIST documentation seems to suggest that GCM is an algorithm that allows parallelization -- however, on looking at the ...
0
votes
1answer
32 views
Why does Bouncy Castle RSAEngine.processblock method always returns 255 bytes when decrypting?
I am experiment with RSA using bouncy castle. I know this is the other way around to the general convention but to my understanding, it still should work theoretically.
I encrypt some data using an ...
0
votes
1answer
39 views
iText SpongyCastle error
I've tried this with various versions of itext including itextgoogle with a trial license, and I keep getting the following error when I try to run my code:
InputStream object = ...
0
votes
1answer
110 views
Bouncy Castle Encryption
I have a requirment to send PGP Encrypted CSV Files to SFTP and i know nothing aboutr PGP. After a lot of research I could find following code on internet using 'Bouncy Castle' Library. The code seems ...
0
votes
0answers
31 views
retrieve full extension value from certificate
I'm using: java.security.cert.X509Certificate package. and java.security.cert.X509CRL;
When I get extension value, for example when OID=2.5.29.14 (it is SubjectKeyIdentifier)
...
0
votes
1answer
50 views
CA certificate location
I have 1) X509 Certificate (child) -> Authentication CA (parent) certificate and -> root CA (root) certificate.
Questions:
Can I retrieve this Authentication CA certificate from current ...
0
votes
1answer
31 views
How to resolve Org.BouncyCastle.Crypto.DataLengthException
The message is
attempt to process message to long for cipher
and the complete call stack is
Org.BouncyCastle.Crypto.DataLengthException was unhandled by user code
HResult=-2146233088
...
0
votes
0answers
53 views
Should I validate an embedded timestamp in a PAdES signature when doing signature verification?
I'm trying to understand if and how I should validate a PAdES signature with an embedded timestamp.
This embedded timestamp is obtained from a timestamp authority (TSA).
If the signature includes crl ...
0
votes
1answer
92 views
Use preexisting RSA SSH keys to decrypt a text in C#
I have a pair of RSA public/private keys generated by the 'ssh-keygen' command in a Linux computer. There is a Ruby application in this Linux computer that encrypts a string using this public key, and ...
0
votes
0answers
29 views
Java - How to construct the certificate structure?
I want make a p12 file. Currently I have a certificate (TBSCertificateStructure), AlgorithmIdentifier, and a signature.
My problem is to make it in p12.
I tried:
ASN1EncodableVector v = new ...
0
votes
1answer
72 views
Java Bouncy Castle OCSP Url
I am using bouncy castle 1.48 to verify certificate validation with OCSP. It works good.
But I'm using Ocsp Url as static variable and I want to read it from certificate. Url is written in certificate ...
0
votes
0answers
49 views
How to sign a file in java with bouncycastle and cades specs
I'm looking for a complete example in java using BuncyCastle to obtain a signed file accordling to Cades specs.
Thx.
0
votes
0answers
97 views
How to encrypt CSR into PKCS7 using bouncycastle?
Hi, guys! My problem is next: I have the CSR certificate, certificate X509 of client and file .p12 with private key of CSR. I want to encrypt my CSR into PKCS7 and in future get it and verify.
In the ...
1
vote
1answer
115 views
How to convert X509 certificate into PKCS7 using bouncycastle?
Hi, all! My problem is following: I 'm trying to encrypt X509 certificate to PKCS7 but I receive a wrong result.
The first attempt is:(used bcmail-jdk16:1.46)
Security.addProvider(new ...
1
vote
1answer
67 views
GCM server push fails with SSLException (Java)
I'm having a problem which occurs sometimes when I send new push notifications to Google Cloud Messaging centre. I'm using Google's library available here. Im using Tomcat 7.0.35 and bouncycastle ...
0
votes
0answers
55 views
jSCEP Message-digest attribute Exception
I create SCEP client for android. I create server on jSCEP and it forking fine, at least iPad can enroll certificate successfully. But android client get error:
...
1
vote
1answer
165 views
Convert Python (pyelliptic, openssl) ecc key and sign to c# (BouncyCastle?)
Project https://github.com/Bitmessage/PyBitmessage use the library https://github.com/yann2192/pyelliptic for use openssl.
pyelliptic test case:
#!/usr/bin/python
import pyelliptic
from pyelliptic ...
0
votes
0answers
97 views
InvalidCastException on c# bouncy castle verify signature
I try to verify an ecdsa (256) signature, the only data I have to do it is the public key in the given format below, the original data and the signature:
string pubKey_ecdsa = ...
0
votes
1answer
112 views
How to get certificate from pkcs7 file using bouncycastle?
Hi, all! My problem is next: I have the .pkcs7 file which consists pre-packed CSR and I want to get CSR from it. How can I do it using bouncycastle?
I tried use PEMReader, but it didn't work.
...
0
votes
1answer
187 views
AES encrypt/decrypt with Bouncy Castle provider [duplicate]
Here is my implementation of a AES 256 encrypt and decrypt, developed with the native library of JDK 5:
public static String encrypt(String key, String toEncrypt) throws Exception {
Key skeySpec ...
1
vote
0answers
42 views
https file transfer from android to windows machine
i did this successfully using http. then
1) i made reqd changes to the server as well as the code.
2) generated necessary certs and added them to the raw folder in android. (in bks format)
3) i am ...
0
votes
0answers
118 views
How do generate certificate signing request with custom subject alternative name?
how i do for generate a certificate signing request with custom subject alternative name?
i have problems with this code.
public static PKCS10CertificationRequest generateRequestCNPJ(KeyPair pair) ...
1
vote
0answers
105 views
How to verify X.509 certificate format?
I have an SSL certificate (a certificate chain starting from the root of the server) which seems to be Okay. I can open the certificate on windows & also import it using the windows wizard.
But ...
2
votes
1answer
214 views
RSA - bouncycastle PEMReader returning PEMKeyPair instead of AsymmetricCipherKeyPair for reading private key
I have a function that successfully reads a openssl formatted private key:
static AsymmetricKeyParameter readPrivateKey(string privateKeyFileName)
{
AsymmetricCipherKeyPair keyPair;
using ...
3
votes
1answer
198 views
Rijndael 256 encryption: Java and .NET do not match
I need to translate a powershell script with Rijandael encryption to Java.
Here is the source powershell code:
[Reflection.Assembly]::LoadWithPartialName("System.Security")
Add-Type -AssemblyName ...
0
votes
1answer
104 views
How to use bouncycastle's PaddedBufferedBlockCipher correctly?
I've been poking around in the java version of BouncyCastle's encryption APIs. I'm a little bit confused by the PaddedBufferedBlockCipher class. I understand (perhaps mistakenly?) that it's purpose ...
1
vote
1answer
96 views
Spongycastle is missing many algorithms when loaded on android
In this stackoverflow answer you can see a code to print all available providers and corresponding algorithms: How to find out what algorithm [ encryption ] are supported by my JVM?
I am using latest ...
0
votes
1answer
54 views
Why do I get NoSuchAlgorithmException in android when trying to encrypt with bouncycastle?
First of all note that all the code is already tested on my linux machine. There are relevant unit tests to confirm it. But the code does not work on android.
I have included my own bouncycastle ...
0
votes
0answers
190 views
Get KeyPair from PEM Key with BouncyCastle
I have a PEM Key and I want to get a KeyPair with it and bouncycastle. I found this code which seems good but I have a cast exception.
function loadKey() {
File privateKeyFile = new ...
0
votes
0answers
132 views
Importing PEM encrypted key pair in java using bouncycastle
I'm writing a program that uses RSA for various tasks.
I know how to generate and write the key pair to file, but I cannot load the encrypted (AES-256-CFB) key pair to a KeyPair object.
So the ...
5
votes
5answers
606 views
Encryption PHP, Decryption Java
I have a web-service in php that generates a keypair to encrypt a message, and one application in java that retrives the privatekey and decrypt the message.
For php I'm using ...
1
vote
1answer
656 views
Read RSA PrivateKey in C# and Bouncy Castle
I have successfully written to public and private key files with OpenSSL format.
Files:
-----BEGIN PUBLIC KEY-----
MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCpHCHYgawzNlxVebSKXL7vfc/i
...
0
votes
0answers
45 views
Email application does not work when I add Bouncy Castle as a security provider
I am currently working with Bouncy Castle and I have realized that whenever I add a security provider, the email is not sent. I cant figure our why adding Bouncy Castle would prevent the email from ...
2
votes
1answer
35 views
Installing signed jar in equinox
I am trying to install a feature into equinox OSGi container. I do this via the p2 director command line tool:
java -jar ./plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar -application ...
0
votes
0answers
26 views
TimeStampResp factory
I open a new question. The other was
Error from timestamp response
Now im getting this error:
java.lang.IllegalArgumentException: unknown object in 'TimeStampResp' factory : ...
0
votes
0answers
104 views
Error when validating a Pdf signature with Itext
I'm trying to validate a PDF signature with Itext 5 and BouncyCastle 1.48. My code works for many signed pdf but on some pdf of a specific customer. Here's my Java code
// The entry point
public ...
0
votes
1answer
42 views
Error while initializing Cipher
I have function that crypts string:
BASE64Decoder decoder = new BASE64Decoder();
BASE64Encoder encoder = new BASE64Encoder();
public String encryptValueWithBlowfish(String data, String secretKey) {
...
-1
votes
1answer
164 views
Blowfish ECB Mode in BouncyCastle
This thread should not be for discussion on how bad ECB mode is, and that I should change it, but that BouncyCastle doesn't really support the mode, except for in Java, where you can use ...
0
votes
1answer
94 views
PemReader in java
I am working with PEMReader and I have this code which doesn't work.
protected static KeyPair doReadKeyPair(InputStream is) throws Exception {
PemReader r = new PemReader(new ...
0
votes
0answers
100 views
Converting an RSA Public Key into a RFC 4716 Public Key with Bouncy Castle
I am looking to convert an RSA public key into something that I could use as an SSH public key.
Currently I have Bouncy Castle producing me a public key that looks like this:
-----BEGIN PUBLIC ...
2
votes
1answer
220 views
ECDH Shared secret derived from OpenSSL and BouncyCastle are not always the same although constants and domain parameters are the same for both
I'm trying to implement AES cryptography between an iOS app and a java servlet. Java servlet uses BouncyCastle library while iOS app uses OpenSSL. Although I've used same public/private key pair and ...
1
vote
1answer
64 views
Create bouncycastle PGPSecretKey with an email
I need to create a public key for a unix machine to send me encrypted data.
What I do is use the following constructor for creating the PGPSecreyKey.
PGPSecretKey secretKey = new ...
0
votes
1answer
36 views
Importing error?
What am I doing wrong?
% javac -cp ./:./bcprov-jdk16-nosign-140.jar MyProjectFile.java
MyProjectFile.java:12: cannot find symbol
symbol : class CipherInputStream
location: package ...
1
vote
0answers
35 views
InvalidCiphertextexception - what causes this to occur
I have a set of aes keys encrypted and stored on my hard disk.
I am trying to decrypt aes keys sequentially using asymmetric blockcipher by providing necessary padding and privatekey of rsa.
However ...

