aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan/plugins/pem
Commit message (Collapse)AuthorAgeFilesLines
* certificate: Return signature scheme and parameters from issued_by() methodTobias Brunner2017-11-081-0/+2
| | | | | This also required some include restructuring (avoid including library.h in headers) to avoid unresolvable circular dependencies.
* pem: Ensure a value before checking Proc-Type in PEM headerTobias Brunner2017-05-231-1/+1
|
* pem: Don't read beyond line endsTobias Brunner2017-05-231-2/+2
|
* Added support of EdDSA signaturesAndreas Steffen2016-12-142-8/+20
|
* Use standard unsigned integer typesAndreas Steffen2016-03-241-1/+1
|
* pem: Handle BER indefinite length encoding as binary ASN.1Martin Willi2014-12-121-1/+24
| | | | | | While our ASN.1 parser can't handle BER indefinite length encoding, the OpenSSL backend can. Some PKCS#12 containers get encoded this way, so we should support loading such files in the pem plugin.
* Store and parse BLISS private and public keys in DER and PEM formatAndreas Steffen2014-11-292-0/+16
| | | | | | | | Additionally generate SHA-1 fingerprints of raw BLISS subjectPublicKey and subjectPublicKeyInfo objects. Some basic functions used by the bliss_public_key class are shared with the bliss_private_key class.
* plugins: Don't link with -rdynamic on WindowsMartin Willi2014-06-041-1/+1
|
* pem: Support encoding of attribute certificatesMartin Willi2014-03-311-1/+6
| | | | | | | While there is no widely used PEM header for attribute certificates, at least IAIK-JCE uses BEGIN ATTRIBUTE CERTIFICATE: http://javadoc.iaik.tugraz.at/iaik_jce/current/iaik/utils/Util.html#toPemString(iaik.x509.attr.AttributeCertificate)
* pem: Use chunk_map() instead of non-portable mmap()Martin Willi2014-01-231-29/+6
|
* pki: Replace BUILD_FROM_FD with passing a chunk via BUILD_BLOBTobias Brunner2013-10-231-42/+1
| | | | This allows more than one builder to try parsing the data read from STDIN.
* automake: replace INCLUDES by AM_CPPFLAGSMartin Willi2013-07-181-3/+4
| | | | | | INCLUDES are now deprecated and throw warnings when using automake 1.13. We now also differentiate AM_CPPFLAGS and AM_CFLAGS, where includes and defines are passed to AM_CPPFLAGS only.
* PEM plugin loads PKCS#12 containers from (DER-encoded) filesTobias Brunner2013-05-083-0/+24
| | | | | It is not actually able to handle PEM encoded PKCS#12 files produced by OpenSSL.
* Remove pluto specific certificate typesTobias Brunner2013-05-081-6/+0
|
* Moved debug.[ch] to utils folderTobias Brunner2012-10-241-1/+1
|
* check length of hex-encoded IVAndreas Steffen2012-10-071-2/+5
|
* Make sure first argument is an int when using %.*s to print e.g. chunksTobias Brunner2012-09-281-1/+1
|
* PEM loading soft-depends on MD5 only, as unencrypted files don't need MD5Martin Willi2012-08-031-4/+4
| | | | Fixes #211.
* Add a return value to hasher_t.get_hash()Martin Willi2012-07-161-5/+11
|
* Add a return value to crypter_t.set_key()Martin Willi2012-07-161-2/+2
|
* Add a return value to crypter_t.decrypt()Martin Willi2012-07-161-1/+5
|
* Building CERT_ANY through PEM requires either a CERT_X509 or a CERT_PGP builderMartin Willi2012-05-031-1/+2
|
* PEM loading plugin features depend on the same feature, they are helpers onlyMartin Willi2012-05-021-0/+17
|
* added missing whitespaceAndreas Steffen2012-04-301-1/+1
|
* Properly initialize optional subject in PEM builder.Tobias Brunner2012-04-301-1/+1
|
* added support for raw RSA public keys to strokeAndreas Steffen2012-04-301-9/+24
|
* Log messages for PKCS1 and PEM parsing in ASN log group.Tobias Brunner2011-12-161-8/+8
|
* added newlineAndreas Steffen2011-10-301-0/+1
|
* remove pem_encoder_encodeAndreas Steffen2011-10-301-0/+2
|
* Add features support to pem pluginAndreas Steffen2011-10-301-53/+58
|
* Added a (not yet implemented) plugin_t method to reload plugin configurationMartin Willi2011-04-151-0/+1
|
* Added a get_name() function to plugin_t, create_plugin_enumerator enumerates ↵Martin Willi2011-04-151-0/+7
| | | | over plugin_t
* compute memory requirement for PEM-encoding correctlyAndreas Steffen2011-01-071-1/+1
|
* Migrated pem_plugin_t to INIT/METHOD macrosAndreas Steffen2010-12-041-7/+11
|
* Added a final flag to builder registration to enumerate the actually ↵Martin Willi2010-09-031-19/+19
| | | | supported algorithms
* Use IV length of a crypter instead of block size for IV calculationsMartin Willi2010-08-131-2/+2
|
* Obseleted BUILD_PASSPHRASE(_CALLBACK) for private key loading, use ↵Martin Willi2010-08-041-60/+29
| | | | credential sets
* Added support for Certificate, CRL and PKCS10 encoding to PEM pluginMartin Willi2010-07-131-0/+19
|
* Renamed key_encod{ing,der}_t and constants, prepare for generic credential ↵Martin Willi2010-07-132-28/+28
| | | | encoding
* Moved keys/key_encoding.[ch] to cred_encoding.[ch]Martin Willi2010-07-131-1/+1
|
* Do not check pointer, but length of a chunkMartin Willi2010-05-051-1/+1
|
* PEM encoder supports encoding from RSA components directly, allowing gcrypt ↵Martin Willi2010-04-291-5/+40
| | | | plugin to encode in PEM
* Some whitespace fixes.Tobias Brunner2010-04-061-4/+4
|
* Adding DBG_LIB to all calls of libstrongswan's version of DBG*.Tobias Brunner2010-04-061-16/+19
|
* PEM encoding for OpenSSL RSA and EC public and private keysAndreas Steffen2010-04-041-8/+16
|
* PEM encoding for GMP RSA public and private keysAndreas Steffen2010-04-044-1/+135
|
* change #define to PEM_BUILDER_H_Andreas Steffen2010-04-031-3/+3
|
* Reverting eba28948a584b9d02474cf5d256b04b8d2adbe6a which was only necessary ↵Tobias Brunner2010-03-021-1/+0
| | | | | | | when cross-compiling the plugins for Android 2.0. With the coming monolithic build using Android.mk files this won't be necessary anymore.
* Streamlined the source file list formatting in plugin makefiles.Tobias Brunner2010-03-021-2/+3
|
* Link all enabled libstrongswan plugins into the library, link all enabled ↵Tobias Brunner2010-03-021-2/+5
| | | | charon plugins into libcharon.