]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/crypto/SMIME.java
upd: whitespace changes (formatting)
[gigi.git] / src / org / cacert / gigi / crypto / SMIME.java
index f37fbe8a17b428202430fcb27dc5a5bc5acde764..321a4df63a987af9f53193838af6839e68770b3f 100644 (file)
@@ -62,11 +62,11 @@ public class SMIME {
 
         // Create PKCS7 Signed data
         PKCS7 p7 = new PKCS7(new AlgorithmId[] {
-            new AlgorithmId(AlgorithmId.SHA_oid)
+                new AlgorithmId(AlgorithmId.SHA_oid)
         }, cInfo, new java.security.cert.X509Certificate[] {
-            c
+                c
         }, new SignerInfo[] {
-            sInfo
+                sInfo
         });
 
         ByteArrayOutputStream bOut = new DerOutputStream();