diff options
author | Stef Walter <stefw@gnome.org> | 2013-03-27 17:54:38 +0100 |
---|---|---|
committer | Stef Walter <stefw@gnome.org> | 2013-03-28 13:26:38 +0100 |
commit | 87a0afed5db7e916a6ad6715e14996b2e25641d7 (patch) | |
tree | 3e5b2bdc468e63977adfd184988b5910191893ab /build/certs | |
parent | b0e44f8e1e589726c95506da5121e95a54269fd7 (diff) |
Don't try to guess at overflowing time values on 32-bit systems
Since CKA_START_DATE and CKA_END_DATE are the only places
where we want to parse out times, and these are optional, just
leave blank if the time overflows what libc can handle on
a 32-bit system.
https://bugs.freedesktop.org/show_bug.cgi?id=62825
Diffstat (limited to 'build/certs')
-rw-r--r-- | build/certs/Makefile.am | 3 | ||||
-rw-r--r-- | build/certs/distant-end-date.der | bin | 0 -> 366 bytes |
2 files changed, 3 insertions, 0 deletions
diff --git a/build/certs/Makefile.am b/build/certs/Makefile.am index 0a46b56..4231591 100644 --- a/build/certs/Makefile.am +++ b/build/certs/Makefile.am @@ -45,3 +45,6 @@ build-self-signed: openssl req -new -x509 -outform DER -out self-signed-with-ku.der \ -newkey rsa -keyout /dev/null -nodes -subj /CN=self-signed-with-ku.example.com \ -config with-ku.conf -set_serial 888 -extensions v3_ca + openssl req -new -x509 -outform DER -out distant-end-date.der \ + -newkey rsa:512 -keyout /dev/null -nodes -subj /CN=far-in-the-future.example.com \ + -config with-ku.conf -set_serial 999 -extensions v3_ca -days 20000 diff --git a/build/certs/distant-end-date.der b/build/certs/distant-end-date.der Binary files differnew file mode 100644 index 0000000..1b3fd47 --- /dev/null +++ b/build/certs/distant-end-date.der |