1Mono(crlupdate) Mono(crlupdate)
2
3
4
6 crlupdate - Mono Certficate Revocation List Downloader and Updater
7
9 crlupdate [-m] [-v] [-f]
10
12 This tool allows the download of new, or update of existing, Certficate
13 Revocation List (CRL) associated with the certificates present in the
14 user (default) or machine stores. The CRL present in the stores are
15 used to determine the validity of unexpired, trusted X.509 certifiā
16 cates. To ensure CRL are always fresh consider automating the updates
17 using the at (or similar) command(s).
18
20 -m Update CRL associated with certificates in the machine store. By
21 default the tool works on the user store.
22
23 -v Verbose mode. Display extra information while downloading and
24 updating the CRL.
25
26 -f Force the download of all CRL even if they are not normally due
27 to be updated (i.e. nextUpdate is still in the future).
28
29
31 mono crlupdate.exe
32 Download (if missing) or update (if existing and past due date)
33 all CRL associated with certificates present in user store.
34
35 mono crlupdate.exe -f -m
36 Force the download of every CRL associated with certificates
37 present in the machine store. Note that the user running this
38 needs read/write access to the machine store or update will not
39 occur.
40
41
43 Written by Sebastien Pouliot
44
46 Copyright (C) 2011 Novell.
47
49 Visit http://lists.ximian.com/mailman/listinfo/mono-list for details.
50
52 Visit http://www.mono-project.com for details
53
55 certmgr(1),[22mat(1)
56
57
58
59 Mono(crlupdate)