summaryrefslogtreecommitdiff
path: root/www/capnew.php
diff options
context:
space:
mode:
authorBernhard Fröhlich <bernhard@cacert.org>2019-01-18 21:29:55 +0100
committerBernhard Fröhlich <bernhard@cacert.org>2019-01-18 21:29:55 +0100
commita3cb4e655f4b53135acabaab9c0eb15aa0929a01 (patch)
tree29d34a2555dba636f96410522cf54d2e4ae59fe9 /www/capnew.php
parente62578a0961f12eb17e2c8b49b0533b058a372e8 (diff)
parente6d9b5a8da7053051bc40a302e06a351a70b2f14 (diff)
downloadcacert-devel-test2-1260.tar.gz
cacert-devel-test2-1260.tar.xz
cacert-devel-test2-1260.zip
Merge remote-tracking branch 'github/bug-1305' into test2-1260test2-1260
# Conflicts: # pages/index/3.php
Diffstat (limited to 'www/capnew.php')
-rw-r--r--www/capnew.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/www/capnew.php b/www/capnew.php
index a57bde3..7c610ef 100644
--- a/www/capnew.php
+++ b/www/capnew.php
@@ -311,6 +311,10 @@ define('ARBIT', WIKI.'/ArbitrationForum');
define('CCA', 'CAcertCommunityAgreement'); // default policy to print
define('POLICY','policy/'); // default polciy doc directory
define('EXT','.html'); // default polciy doc extention, should be html
+/* finger print CAcert Root Key SHA256 since 2019*/ // should obtain this automatically
+define('CLASS1_SHA256','07ED BD82 4A49 88CF EF42 15DA 20D4 8C2B 41D7 1529 D7C9 00F5 7092 6F27 7CC2 30C5');
+define('CLASS3_SHA256','F687 3D70 D675 96C2 ACBA 3440 1E69 738B 5270 1DD6 AB06 B497 49BC 5515 0936 D544');
+/* finger print CAcert Root Key */ // not to use since 2019
/* finger print CAcert Root Key */ // should obtain this automatically
define('CLASS1_SHA1','135C EC36 F49C B8E9 3B1A B270 CD80 8846 76CE 8F33');
define('CLASS3_SHA1','AD7C 3F64 FC44 39FE F4E9 0BE8 F47C 6CFA 8AAD FDCE');
@@ -918,7 +922,7 @@ class CAPPDF extends TCPDF {
$this->SetXY($savex,$savey);
// sha1 fingerprint CAcert rootkeys class 1 and class 3
- $strg = $this->unhtmlentities( _("CAcert's Root Certificate sha1 fingerprints") ) . ', class 1: '. CLASS1_SHA1 . ', class 3: ' . CLASS3_SHA1;
+ $strg = $this->unhtmlentities( _("CAcert's Root Certificate sha256 fingerprints (since 2019)") ) . ', class 1: '. CLASS1_SHA256 . ', class 3: ' . CLASS3_SHA256;
$this->Ln(3); $this->SetX($this->lMargin);
$this->SetFont(FONT,'',F_SIZE * $this->colwidth / ($this->GetStringWidth($strg) +1));
$this->Cell($this->colwidth,10, $strg,0,0,'C',0,NULL);