aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan/crypto/pkcs7.c
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2009-09-04 14:50:23 +0200
committerMartin Willi <martin@strongswan.org>2009-09-04 14:50:23 +0200
commit323f9f990fb28583bfaaaad04f9934c0f0e62052 (patch)
tree99a9f789388077bd6b2d51516d45b5d0112e3c9c /src/libstrongswan/crypto/pkcs7.c
parent7daf5226b74e14a6e0f1a888b0be26f3d246f9f8 (diff)
downloadstrongswan-323f9f990fb28583bfaaaad04f9934c0f0e62052.tar.bz2
strongswan-323f9f990fb28583bfaaaad04f9934c0f0e62052.tar.xz
replaces four spaces by tabs, where appropriate
Diffstat (limited to 'src/libstrongswan/crypto/pkcs7.c')
-rw-r--r--src/libstrongswan/crypto/pkcs7.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstrongswan/crypto/pkcs7.c b/src/libstrongswan/crypto/pkcs7.c
index f3ec2d839..d8d2684b0 100644
--- a/src/libstrongswan/crypto/pkcs7.c
+++ b/src/libstrongswan/crypto/pkcs7.c
@@ -727,7 +727,7 @@ chunk_t pkcs7_build_issuerAndSerialNumber(x509_t *cert)
{
identification_t *issuer = cert->get_issuer(cert);
- return asn1_wrap(ASN1_SEQUENCE, "cm",
+ return asn1_wrap(ASN1_SEQUENCE, "cm",
issuer->get_encoding(issuer),
asn1_simple_object(ASN1_INTEGER, cert->get_serialNumber(cert)));
}
@@ -806,7 +806,7 @@ bool build_envelopedData(private_pkcs7_t *this, x509_t *cert,
crypter->encrypt(crypter, in, iv, &out);
crypter->destroy(crypter);
chunk_clear(&in);
- DBG3(" encrypted data: %B", &out);
+ DBG3(" encrypted data: %B", &out);
/* build pkcs7 enveloped data object */
{
@@ -839,7 +839,7 @@ bool build_envelopedData(private_pkcs7_t *this, x509_t *cert,
asn1_wrap(ASN1_SET, "m", recipientInfo),
encryptedContentInfo);
this->type = OID_PKCS7_ENVELOPED_DATA;
- }
+ }
return TRUE;
}