aboutsummaryrefslogtreecommitdiffstats
path: root/src/scepclient
Commit message (Collapse)AuthorAgeFilesLines
* libhydra: Remove empty unused libraryTobias Brunner2016-03-031-1/+0
|
* scepclient: Remove copyright and license from man pageTobias Brunner2015-09-091-9/+0
|
* android: Add all Android.mk files to the tarballTobias Brunner2014-06-061-0/+1
|
* scepclient: Cast OID_UNKNOWN before comparing it to unsigned hash_algorithm_tMartin Willi2014-05-161-1/+1
| | | | clang uses unsigned enums and complains about the always-false -1 check.
* lib: Add global config namespaceTobias Brunner2014-02-121-1/+1
|
* chunk: Externalize error reporting in chunk_write()Martin Willi2014-01-231-15/+22
| | | | | This avoids passing that arbitrary label just for error messages, and gives greater flexibility in handling errors.
* android: Remove dependency on libvstrTobias Brunner2013-11-131-1/+0
|
* automake: replace INCLUDES by AM_CPPFLAGSMartin Willi2013-07-181-8/+5
| | | | | | 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.
* plugin-loader: Removed unused path argument of load() methodTobias Brunner2013-06-281-1/+1
| | | | | Multiple additional search paths can be added with the add_path() method.
* plugin-loader: Add method to print loaded plugins on a given log levelTobias Brunner2013-06-211-2/+1
|
* scepclient: support a --bind option to fetch from a specific source IPMartin Willi2013-06-113-6/+27
|
* android: Remove/filter header files from LOCAL_SRC_FILESTobias Brunner2013-03-201-1/+3
| | | | This avoids huge warnings when building the native code.
* Fix encoding of issuerAndSubject while handling SCEP pending stateMartin Willi2013-02-191-1/+1
|
* Remove leading zeros in SCEP certificate serialNumbersMartin Willi2013-02-141-13/+19
|
* Add a --httptimeout option to scepclientMartin Willi2013-02-083-7/+22
|
* Free leaking scep attributesMartin Willi2012-12-191-0/+4
|
* Corrected error message if enveloped-data decryption failsMartin Willi2012-12-191-1/+1
|
* Move PKCS#9 attribute lists to pkcs7 plugin, as we currently use it there onlyMartin Willi2012-12-191-1/+0
|
* Allocate data returned by pkcs7_t.get_attribute()Martin Willi2012-12-191-0/+3
|
* Migrated scepclient to new modular PKCS# APIMartin Willi2012-12-193-95/+172
|
* Unify PKCS#9 set_attribute* methods to a single add_attributeMartin Willi2012-12-191-3/+6
| | | | | This way the PKCS#9 implementation does not have to know the encoding types for values
* Add a scepclient option to specify a CA identifier to fetch certs forMartin Willi2012-10-243-10/+31
|
* Moved debug.[ch] to utils folderTobias Brunner2012-10-242-2/+2
|
* Moved data structures to new collections subfolderTobias Brunner2012-10-241-2/+2
|
* Added possibility to register custom proposal keywordsTobias Brunner2012-09-131-2/+2
| | | | Keyword lookup and registration are handled via the new lib->proposal object.
* Removed len argument from proposal_get_token()Tobias Brunner2012-09-131-2/+2
| | | | Also use enumerators instead of lexparser.h to parse proposal strings.
* Add a return value to hasher_t.get_hash()Martin Willi2012-07-161-3/+10
|
* Check rng return value when generating SCEP sender nonceTobias Brunner2012-07-161-3/+13
|
* scepclient: Added support to build it on AndroidTobias Brunner2012-06-262-1/+29
|
* hasher_algorithm_from_integrity() optionally returns truncation lengthTobias Brunner2012-06-251-1/+2
|
* scepclient: Fixed Makefile after removing enable-smartcard configure option.Tobias Brunner2012-06-131-6/+0
|
* scepclient: Option added to read PKCS#10 certificate request from a file.Tobias Brunner2012-06-112-11/+30
|
* scepclient: Option added to read self-signed certificate from a file.Tobias Brunner2012-06-112-21/+53
|
* scepclient: Generate uppercase transaction ID.Tobias Brunner2012-06-111-1/+1
|
* scepclient: Use HTTP 1.0 for all requests.Tobias Brunner2012-06-111-0/+2
|
* scepclient: Options added to specify digest/signature algorithms.Tobias Brunner2012-06-112-27/+92
| | | | | Also changed the defaults to DES/MD5 as that's what should be used if GetCACaps is not used to learn the issuers capabilities.
* scepclient: Also number CA certificates in case there is more than one.Tobias Brunner2012-06-112-14/+51
| | | | Also, only number them if there are multiple certificates.
* scepclient: Store received RA certificates, using CA cert name as base.Tobias Brunner2012-06-111-5/+67
|
* scepclient: Use pkcs7_t and pkcs9_t, remove all dependencies to ↵Tobias Brunner2012-06-114-289/+119
| | | | pluto/libfreeswan.
* scepclient: Local generation of file names.Tobias Brunner2012-06-111-10/+48
|
* scepclient: Replaced usages of datatot().Tobias Brunner2012-06-111-6/+6
|
* scepclient: Migrated logging to libstrongswan.Tobias Brunner2012-06-115-513/+147
|
* scepclient: Some code cleanup.Tobias Brunner2012-06-113-335/+319
|
* Cache list of plugin names to further simplify its usage.Tobias Brunner2012-01-191-13/+2
| | | | Also helpful for ipsec statusall to avoid having to enumerate plugins.
* Simplified logging of list of loaded plugins.Tobias Brunner2012-01-191-11/+4
|
* Fixed check of max_poll_time as it is an unsigned int.Tobias Brunner2011-11-251-4/+0
|
* Allow support for CA-certificate retrieval in scepclient4.6.0Thomas Egerer2011-11-041-0/+21
| | | | | I think somehow this functionality got lost in the way from strongswan-2.7.0...
* Plugin enumerator enumerates over loaded features, tooMartin Willi2011-10-141-1/+1
|
* Include library.h in plugin.hMartin Willi2011-10-141-0/+1
|
* Fix some warnings triggered by gcc 4.6 -Wunused-but-set-variableMartin Willi2011-05-191-3/+0
|