Public Key Infrastructures

Size: px
Start display at page:

Download "Public Key Infrastructures"

Transcription

1 Public Key Infrastructures How to authenticate public keys? Chapter 4 Certificates Cryptography and Computeralgebra Johannes Buchmann 1 2 Authenticated by digital signature 3 4 Click on icon Click on view 5 6 1

2 Certificates Public key certificate Digitally signed documents that establish connection between subject and public key Public key certificates are data structures that bind public key values to subjects. The binding is asserted by having a trusted CA digitally sign each certificate From RFC Certificate PKI: Certificates Public-key Name Digital Signature as on the key-server protection of authenticity 9 Relevant Standard: X.509 (Organisation: ITU-T) Encoding: Abstract Syntax Notation Nr.1: ASN.1 Distinguished Encoding Rules: DER Standard Content (in X.509): Name / Pseudonym of the holder Public Key (and algorithm) of the holder Unique ID of the certificate Validity period of the certificate Identity of the certificate issuer Key usage limitation for the public keys The certificate is digitally signed from its issuer 10 Certificate properties X.509 Certificate The binding of a key and a key holder is directly protected Its authenticity is independent of the repository It can be used online and offline It contains proof of the binding It is compatible to the key server

3 X.509-Certificates Fields Certificate (ASN1) Version 1 (1988) Version 2 (1993) Version 3 (1997) Version (0=v1, 1=v2, 2=v3) Serial Number (Unique within PKI) Certificate Signature Algorithm Issuer Validity Period Subject Subject Public Key Info Subject Unique ID (world wide unique) Issuer Unique ID (world wide unique) Extensions Certificate ::= SEQUENCE { tbscertificate TBSCertificate, signaturealgorithm AlgorithmIdentifier, signaturevalue BIT STRING } To Be Signed (TBS) Certificate This part holds all information; this will be signed. Algorithm The algorithm that is used for signing the TBS part. Signature Value The calculated signature Certificate (ASN1) Certificate: Data: Version: 3 (0x2) Serial Number: 1 (0x1) [... ] Signature Algorithm: ripemd160withrsa 6c:33:30:1f:8c:c9:07:fd:2a:82:66:c1:5a:fb:c2:18:9b:26: f6:59:8b:cc:b7:4e:70:1f:07:0a:6d:44:be:50:8b:a9:a0:97: ed:3c:28:52:e0:4d:be:8c:54:f4:e1:ed:d7:00:1b:0a:13:4f: fa:e7:83:98:8f:f4:bb:62:91:36:fe:bf:b7:87:0e:07:c7:78: 9d:ab:f0:b1:6e:67:9a:49:d2:cd:d6:7a:51:94:d4:7e:60:ab: 9f:a5:c8:75:4b:65:da:19:22:16:54:29:0a:f0:88:04:58:ff: f8:f8:d0:44:c7:68:bd:13:78:d8:44:3d:5d:58:5b:e4:1d:8c: 1a:ff TBSCertificate TBSCertificate ::= SEQUENCE { version [0] EXPLICIT Version DEFAULT v1, serialnumber CertificateSerialNumber, signature AlgorithmIdentifier, issuer Name, validity Validity, subject Name, subjectpublickeyinfo SubjectPublicKeyInfo, issueruniqueid [1] IMPLICIT UniqueIdentifier OPTIONAL, -- If present, version MUST be v2 or v3 subjectuniqueid [2] IMPLICIT UniqueIdentifier OPTIONAL, -- If present, version MUST be v2 or v3 extensions [3] EXPLICIT Extensions OPTIONAL -- If present, version MUST be v3 } Version Holds the version of X.509 that the certificate is. Version ::= INTEGER { v1(0), v2(1), v3(2) }../Certificates/text/BNetz_Root_Version.cxt (text) Serial Number The serial number of the certificate CertificateSerialNumber ::= INTEGER Positive integer Must be unique for the same issuer Two certificates from the same issuer are not allowed to have the same serial number../certificates/text/bnetz_root_serial.cxt (text)

4 Signature Specifies the algorithm that was used to sign the certificate e.g. SHA1withRSA AlgorithmIdentifier ::= SEQUENCE { algorithm OBJECT IDENTIFIER, parameters ANY DEFINED BY algorithm OPTIONAL } algorithm: the algorithm OID ( ) Parameters: any needed parameters (like the elliptic curve to be used in ECDSA) MUST be the same as the signaturealgorithm of the certificate Issuer Holds the name of the issuer (CA) Looks like: CN = RBG CA,OU = FB Informatik,O = TU Darmstadt,C = DE../Certificates/text/BNetz_Root_Issuer.cxt (text)../certificates/text/bnetz_root_signature.cxt (text) Validity Shows the period of time that a certificate can be used Validity ::= SEQUENCE { notbefore Time, notafter Time }../Certificates/text/BNetz_Root_Validity.cxt (text) Subject Holds the name of the certificate holder Looks like: CN = Vangelis Karatsiolis,OU = FB20, O = TUD,C = DE It is an X.500 DN (distinguished name) Associated to the public key contained in the certificate The same DN is not allowed to be given to two different entities../certificates/text/bnetz_root_subject.cxt (text) Public Key Holds the public key of the entity SubjectPublicKeyInfo ::= SEQUENCE { algorithm AlgorithmIdentifier, subjectpublickey BIT STRING }../Certificates/text/BNetz_Root_PublicKey.cxt (text) Unique Identifiers Only by version 2 or 3 Identifies an issuer or subject, in case a DN is reused Rarely used in praxis, not recommended UniqueIdentifier ::= BIT STRING

5 Why Extensions? Extensions: Properties Version 3 (1997) Extensions Drawbacks of X.509v1 und X.509v2: Predetermined naming structure according to X.500 (e.g. usage of addresses is not possible). No statements about the intended usage of the certified key. No statements about the underlying policy (e.g. how was the identity of the certificate owner verified?). Assignment of extra attributes to the owner public or private key issuer Support for better certificate management Specified partially in X.509 Arbitrary extensions Bad interoperability We need flexible extension fields Hold other information Extensions Extensions ::= SEQUENCE SIZE (1..MAX) OF Extension Extension ::= SEQUENCE { extnid OBJECT IDENTIFIER, critical BOOLEAN DEFAULT FALSE, extnvalue OCTET STRING } There are critical and non-critical Authority Key Identifier (AKIE) Identifies the public key that corresponds to the private key that has signed the certificate. MUST be included in all certificates (non-critical) (unless it is a self-signed certificate) AuthorityKeyIdentifier ::= SEQUENCE { keyidentifier [0] KeyIdentifier OPTIONAL, authoritycertissuer [1] GeneralNames OPTIONAL, authoritycertserialnumber [2] CertificateSerialNumber OPTIONAL } KeyIdentifier ::= OCTET STRING../Certificates/text/BNetz_Root_AKIE.cxt (text) Subject Key Identifier (SKIE) Identifies certificates that contain a particular public key. MUST be included in all CA certificates (non-critical) 160 bit hash of the Public Key (exclude tag, length, number of unused bits) Or lsbits of the hash of the public key SubjectKeyIdentifier ::= KeyIdentifier KeyIdentifier ::= OCTET STRING../Certificates/text/BNetz_Root_SKIE.cxt (text) 29 Key Usage Defines the purpose (e.g., encipherment, signature, certificate signing) of the key contained in the certificate. KeyUsage ::= BIT STRING { digitalsignature (0), nonrepudiation (1), keyencipherment (2), dataencipherment (3), keyagreement (4), keycertsign (5), crlsign (6), encipheronly (7), decipheronly (8) }../Certificates/text/BNetz_Root_KeyUsage.cxt (text) 30 5

6 Private Key Usage Indicates the signing lifetime of a private key. SHOULD NOT be used, conformant CAs MUST NOT issue such certificates. PrivateKeyUsagePeriod ::= SEQUENCE { notbefore [0] GeneralizedTime OPTIONAL, notafter [1] GeneralizedTime OPTIONAL }../Certificates/text/CSCA_PKU.cxt (text)../certificates/country_signing_ca.cer (bin) 31 Subject Alternative Name The subject alternative names extension allows additional identities to be bound to the subject of the certificate. for example: Internet electronic mail address a DNS name an IP address uniform resource identifier (URI) All possible combinations This information MUST be verified since it is bound to a public key. 32 Subject Alternative Name (2) SubjectAltName ::= GeneralNames GeneralNames ::= SEQUENCE SIZE (1..MAX) OF GeneralName GeneralName ::= CHOICE { othername [0] OtherName, rfc822name [1] IA5String, dnsname [2] IA5String, x400address [3] ORAddress, directoryname [4] Name, edipartyname [5] EDIPartyName, uniformresourceidentifier [6] IA5String, ipaddress [7] OCTET STRING, registeredid [8] OBJECT IDENTIFIER } Issuer Alternative Name Associates Internet style identities with the certificate issuer. SHOULD NOT be marked critical IssuerAltName ::= GeneralNames../Certificates/text/CSCA_SAN.cxt (text)../certificates/country_signing_ca.cer (bin) Subject Directory Attributes Extended Key Usage It is used to convey identification attributes (e.g., nationality) of the subject. The extension is defined as a sequence of one or more attributes. MUST be non-critical SubjectDirectoryAttributes ::= SEQUENCE SIZE (1..MAX) OF Attribute Indicates one or more purposes for which the certified public key may be used, in addition to or in place of the basic purposes indicated in the key usage extension For example: Code signing OCSP signing Timestamping ExtKeyUsageSyntax ::= SEQUENCE SIZE (1..MAX) OF KeyPurposeId KeyPurposeId ::= OBJECT IDENTIFIER../Certificates/text/BNetz_TSS_EKU.cxt (text)../certificates/bnezta_tsssigner.cer (bin)

7 List of other extensions Subject Directory Attributes Certificate Policies Policy Mappings Policy Constraints Basic Constraints Name Constraints CRLDistributionPoints Inhibit Any-Policy Freshest CRL Authority Information Access Subject Information Access PGP Certificates PGP keys s of PGP keys (v4) One UserID with one signature One UserID with one signature and a second UserID without signature 41 Legend Public Key Packet UserID Packet Signature Packet 42 7

8 One UserID with four signatures One UserID with one signature and a second UserID with one signature and a second key (subkey) with one signature Public Key Signature Packet Subpacket content WAP certificates signature creation time signature expiration time exportable certification trust signature regular expression revocable key expiration time placeholder for backward compatibility preferred symmetric algorithms revocation key issuer key ID notation data preferred hash algorithms preferred compression algorithms key server preferences preferred key server primary user id policy URL key flags signer's user id reason for revocation Are like X.509 certificates but smaller For example: Serial Number: recommendation for not longer than 8 bytes Algorithms: SHA1withRSA, SHA1withECDSA Extensions: not all are included

9 Attribute certificate An attribute certificate (AC) is a structure similar to a PKC the main difference being that the AC contains no public key. An AC may contain attributes that specify group membership, role, security clearance, or other authorization information associated with the AC holder. From RFC3281 Attribute certificate Authorization information may be placed in a PKC extension or placed in a separate attribute certificate (AC). The placement of authorization information in PKCs is usually undesirable for two reasons. First, authorization information often does not have the same lifetime as the binding of the identity and the public key. When authorization information is placed in a PKC extension, the general result is the shortening of the PKC useful lifetime. Second, the PKC issuer is not usually authoritative for the authorization information. This results in additional steps for the PKC issuer to obtain authorization information from the authoritative source. From RFC Attribute Certificate AttributeCertificate ::= SEQUENCE { acinfo AttributeCertificateInfo, signaturealgorithm AlgorithmIdentifier, signaturevalue BIT STRING } Attribute Certificate Information (acinfo) This part holds all information; this will be signed. Signature Algorithm The algorithm that is used for signing the acinfo part. Signature Value The calculated signature. 51 9

Public Key Infrastructures. Andreas Hülsing

Public Key Infrastructures. Andreas Hülsing Public Key Infrastructures Andreas Hülsing How to share Keys with PGP Attach to mail Use Key Server Still need to verify key validity! 28-5-2014 PAGE 1 PGP Keyserver Synchronization Graph http://www.rediris.es/keyserver/graph.html

More information

Security Protocols and Infrastructures. Winter Term 2015/2016

Security Protocols and Infrastructures. Winter Term 2015/2016 Security Protocols and Infrastructures Winter Term 2015/2016 Nicolas Buchmann (Harald Baier) Chapter 5: Standards for Security Infrastructures Contents Introduction and naming scheme X.509 and its core

More information

Security Protocols and Infrastructures

Security Protocols and Infrastructures Security Protocols and Infrastructures Dr. Michael Schneider michael.schneider@h-da.de Chapter 5: Standards for Security Infrastructures November 13, 2017 h_da WS2017/18 Dr. Michael Schneider 1 1 Introduction

More information

Document T10/ rev. 0

Document T10/ rev. 0 To: T10 Committee From: Gerry Houlder, Seagate Technology, gerry_houlder@seagate.com Developed for Trusted Computing Group, www.trustedcomputinggroup.org Subj: SPC-3 Security Commands proposal Date: April

More information

a.trust Certificate and CRL Specification

a.trust Certificate and CRL Specification A-Trust Gesellschaft für Sicherheitssysteme im elektronischen Datenverkehr GmbH. Landstraßer Hauptstraße 5 Tel.: +43 (1) 713 21 51 0 Fax: +43 (1) 713 21 51 350 office@a-trust.at www.a-trust.at a.trust

More information

Category: Standards Track W. Ford VeriSign D. Solo Citigroup April 2002

Category: Standards Track W. Ford VeriSign D. Solo Citigroup April 2002 Network Working Group Request for Comments: 3280 Obsoletes: 2459 Category: Standards Track R. Housley RSA Laboratories W. Polk NIST W. Ford VeriSign D. Solo Citigroup April 2002 Internet X.509 Public Key

More information

Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile draft-ietf-pkix-rfc3280bis-04.

Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile draft-ietf-pkix-rfc3280bis-04. Network Working Group Internet-Draft Obsoletes: 3280, 4325 (if approved) Expires: December 2006 D. Cooper NIST S. Santesson Microsoft S. Farrell Trinity College Dublin S. Boeyen Entrust R. Housley Vigil

More information

FINEID - S2 VRK (PRC) CA-model and certificate contents

FINEID - S2 VRK (PRC) CA-model and certificate contents FINEID SPECIFICATION 19.9.2018 FINEID - S2 VRK (PRC) CA-model and certificate contents v4.0 Population Register Centre (VRK) Certification Authority Services P.O. Box 123 FIN-00531 Helsinki Finland http://www.fineid.fi

More information

Request for Comments: 2459 Category: Standards Track VeriSign W. Polk NIST D. Solo Citicorp January 1999

Request for Comments: 2459 Category: Standards Track VeriSign W. Polk NIST D. Solo Citicorp January 1999 Network Working Group Request for Comments: 2459 Category: Standards Track R. Housley SPYRUS W. Ford VeriSign W. Polk NIST D. Solo Citicorp January 1999 Status of this Memo Internet X.509 Public Key Infrastructure

More information

FINEID - S2 VRK (PRC) CA-model and certificate contents

FINEID - S2 VRK (PRC) CA-model and certificate contents FINEID SPECIFICATION 28.12.2016 FINEID - S2 VRK (PRC) CA-model and certificate contents v3.0 Population Register Centre (VRK) Certification Authority Services P.O. Box 123 FIN-00531 Helsinki Finland http://www.fineid.fi

More information

X.509 Certificate and Certificate Revocation List (CRL) Extensions Profile for Personal Identity Verification Interoperable (PIV-I) Cards

X.509 Certificate and Certificate Revocation List (CRL) Extensions Profile for Personal Identity Verification Interoperable (PIV-I) Cards X.509 Certificate and Certificate Revocation List (CRL) Extensions Profile for Personal Identity Verification Interoperable (PIV-I) Cards Federal PKI Policy Authority April 23, 2010 4/23/2010 1 Version

More information

W. Polk (NIST) D. Solo (Citigroup) expires in six months October Internet X.509 Public Key Infrastructure. Certificate and CRL Profile

W. Polk (NIST) D. Solo (Citigroup) expires in six months October Internet X.509 Public Key Infrastructure. Certificate and CRL Profile PKIX Working Group R. Housley (RSA Laboratories) Internet Draft W. Ford (VeriSign) W. Polk (NIST) D. Solo (Citigroup) expires in six months October 2001 Internet X.509 Public Key Infrastructure Certificate

More information

FINEID - S2 VRK (PRC) CA-model and certificate contents

FINEID - S2 VRK (PRC) CA-model and certificate contents FINEID SPECIFICATION 27.4.2018 FINEID - S2 VRK (PRC) CA-model and contents v3.2 Population Register Centre (VRK) Certification Authority Services P.O. Box 123 FIN-00531 Helsinki Finland http://www.fineid.fi

More information

FINEID - S2 VRK (PRC) CA-model and certificate contents

FINEID - S2 VRK (PRC) CA-model and certificate contents FINEID SPECIFICATION 18.12.2013 FINEID - S2 VRK (PRC) CA-model and certificate contents v2.4 Population Register Centre (VRK) Certification Authority Services P.O. Box 123 FIN-00531 Helsinki Finland http://www.fineid.fi

More information

SHS Version 1.2 CA. The Swedish Agency for Public Management oct This version:

SHS Version 1.2 CA. The Swedish Agency for Public Management oct This version: SHS Version 1.2 CA 1 (11) SHS Version 1.2 CA The Swedish Agency for Public Management oct 2003 This version: http://www.statskontoret.se/shs/pdf/1.2ca.pdf Latest version: http://www.statskontoret.se/shs/pdf/shs-ca.pdf

More information

Federal Public Key Infrastructure (PKI) X.509 Certificate and CRL Extensions Profile

Federal Public Key Infrastructure (PKI) X.509 Certificate and CRL Extensions Profile Federal Public Key Infrastructure (PKI) X.509 Certificate and CRL Extensions Profile October 12, 2005 Prepared By: BOOZ ALLEN & HAMILTON INC. 900 Elkridge Landing Road Linthicum, Maryland 21090 Updated

More information

DirectTrust X.509 Certificate and Certificate Revocation List (CRL) Profiles

DirectTrust X.509 Certificate and Certificate Revocation List (CRL) Profiles DirectTrust X.509 Certificate and Certificate Revocation List (CRL) Profiles DirectTrust.org Certificate Policy & Practices (CPP) Work Group December 14, 2016 1 Revision History Table Date Version Description

More information

Document T10/ rev. 1

Document T10/ rev. 1 To: T10 Committee From: Gerry Houlder, Seagate Technology, gerry_houlder@seagate.com Developed for Trusted Computing Group, www.trustedcomputinggroup.org Subj: SPC-3 Security Commands proposal Date: June

More information

Machine Readable Travel Documents

Machine Readable Travel Documents Machine Readable Travel Documents GUIDANCE DOCUMENT PKI for Machine Readable Travel Documents Version -1.0 Date - 22 June, 2011 Pg. 1 of 24 Table of Contents 1 Introduction... 5 2 Structure of the document...

More information

November 1998 Expires May Storing Certificates in the Domain Name System (DNS)

November 1998 Expires May Storing Certificates in the Domain Name System (DNS) November 1998 Expires May 1999 Storing Certificates in the Domain Name System (DNS) ------- ------------ -- --- ------ ---- ------ ----- Donald E. Eastlake 3rd, Olafur Gudmundsson Status of This Document

More information

Request for Comments: TIS Labs March Storing Certificates in the Domain Name System (DNS)

Request for Comments: TIS Labs March Storing Certificates in the Domain Name System (DNS) Network Working Group Request for Comments: 2538 Category: Standards Track D. Eastlake IBM O. Gudmundsson TIS Labs March 1999 Status of this Memo Storing Certificates in the Domain Name System (DNS) This

More information

MTAT Applied Cryptography

MTAT Applied Cryptography MTAT.07.017 Applied Cryptography Public Key Infrastructure (PKI) Public Key Certificates (X.509) University of Tartu Spring 2017 1 / 45 The hardest problem Key Management How to obtain the key of the other

More information

PKI Services. Text PKI Definition. PKI Definition #1. Public Key Infrastructure. What Does A PKI Do? Public Key Infrastructures

PKI Services. Text PKI Definition. PKI Definition #1. Public Key Infrastructure. What Does A PKI Do? Public Key Infrastructures Public Key Infrastructures Public Key Infrastructure Definition and Description Functions Components Certificates 1 2 PKI Services Security Between Strangers Encryption Integrity Non-repudiation Key establishment

More information

Obsoletes: 2252, 2256, 2587 June 2006 Category: Standards Track

Obsoletes: 2252, 2256, 2587 June 2006 Category: Standards Track Network Working Group K. Zeilenga Request for Comments: 4523 OpenLDAP Foundation Obsoletes: 2252, 2256, 2587 June 2006 Category: Standards Track Status of This Memo Lightweight Directory Access Protocol

More information

Network Working Group S. Santesson Request for Comments: 3039 AddTrust Category: Standards Track W. Polk NIST. Barzin SECUDE. Nystrom RSA.

Network Working Group S. Santesson Request for Comments: 3039 AddTrust Category: Standards Track W. Polk NIST. Barzin SECUDE. Nystrom RSA. Network Working Group S. Santesson Request for Comments: 3039 AddTrust Category: Standards Track W. Polk NIST Barzin SECUDE Nystrom Security P. M. RSA January Status of this Memo Internet X.509 Public

More information

Kubelet to Istio: Kubernetes Network Security

Kubelet to Istio: Kubernetes Network Security Kubelet to Istio: Kubernetes Network Security Demystified @sublimino and @controlplaneio I m: - Andy - Dev-like - Sec-ish - Ops-y What is Network Security Why do we need Network Security? Happy Path Application

More information

International Civil Aviation Organization TECHNICAL ADVISORY GROUP ON MACHINE READABLE TRAVEL DOCUMENTS (TAG/MRTD) TWENTIETH MEETING

International Civil Aviation Organization TECHNICAL ADVISORY GROUP ON MACHINE READABLE TRAVEL DOCUMENTS (TAG/MRTD) TWENTIETH MEETING International Civil Aviation Organization WORKING PAPER TAG/MRTD/20-WP/7 01/08/11 English Only TECHNICAL ADVISORY GROUP ON MACHINE READABLE TRAVEL DOCUMENTS (TAG/MRTD) TWENTIETH MEETING Montréal, 7 to

More information

Appendix W Commonwealth of Pennsylvania ehealth Collaborative Office. CSS HIE Security Services Security Infrastructure Requirements

Appendix W Commonwealth of Pennsylvania ehealth Collaborative Office. CSS HIE Security Services Security Infrastructure Requirements Appendix W Commonwealth of Pennsylvania ehealth Collaborative Office CSS HIE Security Services Security Infrastructure Requirements Table of Contents Introduction... 3 Security Context... 3 A. PKI Model

More information

Middleware and Distributed Systems. Security. Martin v. Löwis

Middleware and Distributed Systems. Security. Martin v. Löwis Middleware and Distributed Systems Security Martin v. Löwis Introduction Threat model: shared resources need to be protected against adversaries Security Policy: specification defining what operations

More information

Certificate and CRL Profiles

Certificate and CRL Profiles Certificate and CRL Profiles Candidate Version 1.1 15 Jun 2004 Open Mobile Alliance OMA-Security-CertProf-V1_1-20040615-C Continues the Technical Activities Originated in the WAP Forum OMA-Security-CertProf-V1_1-20040615-C

More information

Assignments for Trusted Computing Group

Assignments for Trusted Computing Group Assignments for Trusted Computing Group Revision History: 0: Initial revision 1 Introduction To: T13 Technical Committee From: Jim Hatfield Seagate Technology (for the Trusted Computed Group) 389 Disc

More information

COMMON ISIS-MTT SPECIFICATIONS FOR INTEROPERABLE PKI APPLICATIONS FROM T7 & TELETRUST SPECIFICATION INTRODUCTION

COMMON ISIS-MTT SPECIFICATIONS FOR INTEROPERABLE PKI APPLICATIONS FROM T7 & TELETRUST SPECIFICATION INTRODUCTION COMMON ISIS-MTT SPECIFICATIONS FOR INTEROPERABLE PKI APPLICATIONS FROM T7 & TELETRUST SPECIFICATION INTRODUCTION VERSION 1.1 16 MARCH 2004 ISIS-MTT: Introduction Version 1.1 Contact Information ISIS-MTT

More information

The X.509 standard, PKI and electronic documents

The X.509 standard, PKI and electronic documents The X.509 standard, PKI and electronic documents Antonio Lioy < lioy @ polito.it > Politecnico di Torino Dipartimento di Automatica e Informatica Certification Authority (1) Kpub, Anna PC Certification

More information

APNIC Trial of Certification of IP Addresses and ASes

APNIC Trial of Certification of IP Addresses and ASes APNIC Trial of Certification of IP Addresses and ASes ARIN XVII Open Policy Meeting George Michaelson Geoff Huston Motivation: Address and Routing Security What we have today is a relatively insecure system

More information

APNIC Trial of Certification of IP Addresses and ASes

APNIC Trial of Certification of IP Addresses and ASes APNIC Trial of Certification of IP Addresses and ASes RIPE 52 Plenary George Michaelson Geoff Huston Motivation: Address and Routing Security What we have today is a relatively insecure system that is

More information

Internet Engineering Task Force (IETF) Request for Comments: 5759 Category: Informational ISSN: January 2010

Internet Engineering Task Force (IETF) Request for Comments: 5759 Category: Informational ISSN: January 2010 Internet Engineering Task Force (IETF) J. Solinas Request for Comments: 5759 L. Zieglar Category: Informational NSA ISSN: 2070-1721 January 2010 Suite B Certificate and Certificate Revocation List (CRL)

More information

Signtrust. ISIS-MTT Assessment Report

Signtrust. ISIS-MTT Assessment Report Deutsche Post Com GmbH ISIS-MTT Assessment Report Version 1.0 Date October 28, 2005 Petra Barzin, Hans-Joachim Knobloch Secorvo Security Consulting GmbH Ettlinger Straße 12-14 D-76137 Karlsruhe Tel. +49

More information

Certification Policy of Issuance Reports Manager and PKI Operator Certificates. Certificate Profile

Certification Policy of Issuance Reports Manager and PKI Operator Certificates. Certificate Profile Maltese Registrar of Companies Number C75870 and VAT number MT 23399415 and PKI Operator Certificates. Certificate Profile ANF AC MALTA, LTD B2 Industry Street, Qormi, QRM 3000 Malta Telephone: (+356)

More information

MISPC Minimum Interoperability Specification for PKI Components, Version 1

MISPC Minimum Interoperability Specification for PKI Components, Version 1 MISPC Minimum Interoperability Specification for PKI Components, Version 1 September 3, 1997 William Burr, Donna Dodson, Noel Nazario, W. Timothy Polk Output of NIST's Cooperative Research and Development

More information

PKCS #10 v1.7: Certification Request Syntax Standard (Final draft)

PKCS #10 v1.7: Certification Request Syntax Standard (Final draft) PKCS #10 v1.7: Certification Request Syntax Standard (Final draft) RSA Laboratories May 4 th, 2000 Editor s note: This is the final draft of PKCS #10 v1.7, which is available for a 14-day public review

More information

Information technology Open Systems Interconnection The Directory Part 8: Public-key and attribute certificate frameworks

Information technology Open Systems Interconnection The Directory Part 8: Public-key and attribute certificate frameworks INTERNATIONAL STANDARD ISO/IEC 9594-8:2014 TECHNICAL CORRIGENDUM 2 Published 2016-10-15 INTERNATIONAL ORGANIZATION FOR STANDARDIZATION МЕЖДУНАРОДНАЯ ОРГАНИЗАЦИЯ ПО СТАНДАРТИЗАЦИИ ORGANISATION INTERNATIONALE

More information

Certification Authority. The X.509 standard, PKI and electronic documents. X.509 certificates. X.509 version 3. Critical extensions.

Certification Authority. The X.509 standard, PKI and electronic documents. X.509 certificates. X.509 version 3. Critical extensions. The X.509 standard, PKI and electronic uments Antonio Lioy < lioy @ polito.it > Politecnico di Torino Dipartimento di Automatica e Informatica Certification Authority (4) cert repository (cert, CRL) Certification

More information

The Information Technology (Certifying Authority) Regulations, 2001

The Information Technology (Certifying Authority) Regulations, 2001 The Information Technology (Certifying Authority) Regulations, 2001 The Information Technology (Certifying Authority) Regulations, 2001 Appendix XXXIV Notification, New Delhi, the 9th July, 2001, G.S.R.

More information

July, Algorithms and Identifiers for the Internet X.509 Public Key Infrastructure Certificate and CRL Profile

July, Algorithms and Identifiers for the Internet X.509 Public Key Infrastructure Certificate and CRL Profile PKIX Working Group Internet Draft expires September, 2001 L. Bassham (NIST) R. Housley (RSA Laboratories) W. Polk (NIST) July, 2001 Algorithms and Identifiers for the Internet X.509 Public Key Infrastructure

More information

Public Key Infrastructures. Using PKC to solve network security problems

Public Key Infrastructures. Using PKC to solve network security problems Public Key Infrastructures Using PKC to solve network security problems Distributing public keys P keys allow parties to share secrets over unprotected channels Extremely useful in an open network: Parties

More information

KEK GRID CA. Certificate and CRL Profile

KEK GRID CA. Certificate and CRL Profile KEK GRID CA Certificate and CRL Profile Ver. 2.3.0 May 30, 2016 Computing Research Center, High Energy Accelerator Research Organization (KEK), Japan 1. Certificate Profile... 3 1.1 CA Self Signed Certificate...

More information

CORRIGENDA ISIS-MTT SPECIFICATION 1.1 COMMON ISIS-MTT SPECIFICATIONS VERSION JANUARY 2008 FOR INTEROPERABLE PKI APPLICATIONS

CORRIGENDA ISIS-MTT SPECIFICATION 1.1 COMMON ISIS-MTT SPECIFICATIONS VERSION JANUARY 2008 FOR INTEROPERABLE PKI APPLICATIONS COMMON ISIS-MTT SPECIFICATIONS FOR INTEROPERABLE PKI APPLICATIONS FROM T7 & TELETRUST CORRIGENDA TO ISIS-MTT SPECIFICATION 1.1 AS OF 16 MARCH 2004 VERSION 1.2 18 JANUARY 2008 Contact Information The up-to-date

More information

draft-ietf-smime-cert-06.txt December 14, 1998 Expires in six months S/MIME Version 3 Certificate Handling Status of this memo

draft-ietf-smime-cert-06.txt December 14, 1998 Expires in six months S/MIME Version 3 Certificate Handling Status of this memo Internet Draft draft-ietf-smime-cert-06.txt December 14, 1998 Expires in six months Editor: Blake Ramsdell, Worldtalk Status of this memo S/MIME Version 3 Certificate Handling This document is an Internet-Draft.

More information

SONY Certificate Profile V November 15, 2010 V1-1.0

SONY Certificate Profile V November 15, 2010 V1-1.0 SY Certificate Profile V1-1.0 November 15, 2010 V1-1.0 Index 1 CERTIFICATE PROFILE... 1 1.1 ROOT CA CERTIFICATE... 1 1.2 INTRANET CA CERTIFICATE... 2 1.3 B2B CA CERTIFICATE... 3 1.4 CLIENT CERTIFICATE

More information

The X.509 standard, PKI and electronic documents

The X.509 standard, PKI and electronic documents The X.509 standard, PKI and electronic documents Antonio Lioy < lioy @ polito.it > Politecnico di Torino Dipartimento di Automatica e Informatica Certification Authority (1) Kpub, Anna PC Certification

More information

Data representation and PKI

Data representation and PKI Data representation and PKI Many systems use the same data Systems have Different architecture Different OS Different programs for reading/interpreting the data Data must be interpreted the same everywhere

More information

Certification Policy for Legal Representatives of Entities without Legal Personality. Certificate Profile

Certification Policy for Legal Representatives of Entities without Legal Personality. Certificate Profile Maltese Registrar of Companies Number C75870 and VAT number MT 23399415 Entities without Legal Personality. ANF AC MALTA, LTD B2 Industry Street, Qormi, QRM 3000 Malta Telephone: (+356) 2299 3100 Fax:(+356)

More information

Dennis Shefanovskij, DEMOS Co Ltd Expires August 5, 2005 February 5, 2005 Intended Category: Informational

Dennis Shefanovskij, DEMOS Co Ltd Expires August 5, 2005 February 5, 2005 Intended Category: Informational PKIX Working Group Serguei Leontiev, CRYPTO-PRO Internet Draft Dennis Shefanovskij, DEMOS Co Ltd Expires August 5, 2005 February 5, 2005 Intended Category: Informational Status of this Memo Using the GOST

More information

PKI Service Certificate Profile V September 15, 2017 V1-1.1

PKI Service Certificate Profile V September 15, 2017 V1-1.1 PKI Service Certificate Profile V1-1.1 September 15, 2017 V1-1.1 Index 1 CERTIFICATE PROFILE... 1 1.1 ROOT CA CERTIFICATE... 1 1.2 INTRANET CA CERTIFICATE... 2 1.3 B2B CA CERTIFICATE... 3 1.4 CLIENT CERTIFICATE

More information

The X.509 standard, PKI and electronic documents. Certification Authority. X.509 version 3. A.Lioy - Politecnico di Torino ( ) 1

The X.509 standard, PKI and electronic documents. Certification Authority. X.509 version 3. A.Lioy - Politecnico di Torino ( ) 1 The X.509 standard, PKI and electronic documents Antonio Lioy < lioy @ polito.it > Politecnico di Torino Dipartimento di Automatica e Informatica Certification Authority (1) Kpub, Anna PC Certification

More information

SPECIFIC DOCUMENTATION FOR THE APPLICATION AND CODE SIGNATURE CERTIFICATE

SPECIFIC DOCUMENTATION FOR THE APPLICATION AND CODE SIGNATURE CERTIFICATE SPECIFIC DOCUMENTATION FOR THE APPLICATION AND CODE SIGNATURE CERTIFICATE IZENPE 2013 This document is the property of IZENPE and may be reproduced only in its entirety. 1 Introduction This document includes

More information

VA DELEGATED TRUST MODEL

VA DELEGATED TRUST MODEL VA DELEGATED TRUST MODEL Copyright 2004 Tumbleweed Communication Corp. All Rights Reserved. 1 TABLE OF CONTENTS OVERVIEW:... 3 SALIENT FEATURES:... 3 BENEFITS:... 4 DRAWBACKS:... 4 MIGRATION FROM DIRECT

More information

X.509 PROFILES FOR VARIOUS CA SCENARIOS

X.509 PROFILES FOR VARIOUS CA SCENARIOS X.509 PROFILES FOR VRIOUS C SCENRIOS Version 3.0 uthor: Sharon Boeyen Date: June 2004 Copyright 2001-2004 Entrust. ll rights reserved. Entrust is a registered trademark of Entrust, Inc. in the United States

More information

SHAKEN Governance Model and Cer4ficate Management Overview

SHAKEN Governance Model and Cer4ficate Management Overview SHAKEN Governance Model and Cer4ficate Management Overview ATIS- 1000080 8/2/17 1 STI- PA STI- CA Service Provider Code Token ACME SP- KMS Public Key STI- CR SKS Private Key STI- AS STI- VS 8/2/17 2 STI-

More information

Network Working Group. Category: Informational University of Ottawa October 2005

Network Working Group. Category: Informational University of Ottawa October 2005 Network Working Group Request for Comments: 4212 Category: Informational M. Blinov Guardeonic Solutions C. Adams University of Ottawa October 2005 Status of This Memo Alternative Certificate Formats for

More information

Grid Certificate Profile

Grid Certificate Profile GFD-C.125 CAOPS-WG Grid Certificate Profile David L. Groep, Nikhef* Michael Helm, LBNL/ESNet* Jens Jensen, RAL/STFC Milan Sova, CESNET Scott Rea, Dartmouth University Reimer Karlsen-Masur, DFN Ursula Epting,

More information

Advantages of modular PKI for implementation in information systems

Advantages of modular PKI for implementation in information systems Advantages of modular PKI for implementation in information systems Petr Vaněk, Jiří Mrnuštík AEC spol. s r.o. Bayerova 799/30 602 00 Brno, Czech Republic Abstract PKI implementation in practice is not

More information

Security Protocols and Infrastructures. Winter Term 2015/2016

Security Protocols and Infrastructures. Winter Term 2015/2016 Security Protocols and Infrastructures Winter Term 2015/2016 Nicolas Buchmann (Harald Baier) Chapter 9: Status Verification of Certificates Contents Certificate Revocation Lists (CRL) Online Certificate

More information

A PKI For IDR Public Key Infrastructure and Number Resource Certification

A PKI For IDR Public Key Infrastructure and Number Resource Certification A PKI For IDR Public Key Infrastructure and Number Resource Certification AUSCERT 2006 Geoff Huston Research Scientist APNIC If You wanted to be Bad on the Internet And you wanted to: Hijack a site Inspect

More information

DCCKI Interface Design Specification. and. DCCKI Repository Interface Design Specification

DCCKI Interface Design Specification. and. DCCKI Repository Interface Design Specification DCCKI Interface Design Specification and DCCKI Repository Interface Design Specification 1 INTRODUCTION Document Purpose 1.1 Pursuant to Section L13.13 of the Code (DCCKI Interface Design Specification),

More information

Managing Certificates

Managing Certificates CHAPTER 12 The Cisco Identity Services Engine (Cisco ISE) relies on public key infrastructure (PKI) to provide secure communication for the following: Client and server authentication for Transport Layer

More information

Detecting Malignant TLS Servers Using Machine Learning Techniques

Detecting Malignant TLS Servers Using Machine Learning Techniques Detecting Malignant TLS Servers Using Machine Learning Techniques Sankalp Bagaria, R. Balaji, B. S. Bindhumadhava Centre for Development of Computing, Bangalore, India Email: {sankalp, balaji, bindhu}[at]cdac[dot]in

More information

Address: B2, Industry Street, Qormi, QRM 3000 (Malta) Telephone: (+356) Fax: (+356) Web: ANF AC MALTA, LTD

Address: B2, Industry Street, Qormi, QRM 3000 (Malta) Telephone: (+356) Fax: (+356) Web:   ANF AC MALTA, LTD Maltese Registrar of Companies Number C75870 and VAT number MT Certificate for Secure Server (OV), Secure Server (DV), Secure Server (EV), Electronic s and Extended Validation Electronic s Certificates

More information

Network Working Group Request for Comments: 3820 Category: Standards Track. NCSA D. Engert ANL. L. Pearlman USC/ISI M. Thompson LBNL June 2004

Network Working Group Request for Comments: 3820 Category: Standards Track. NCSA D. Engert ANL. L. Pearlman USC/ISI M. Thompson LBNL June 2004 Network Working Group Request for Comments: 3820 Category: Standards Track S. Tuecke ANL V. Welch NCSA D. Engert ANL L. Pearlman USC/ISI M. Thompson LBNL June 2004 Status of this Memo Internet X.509 Public

More information

Internet Engineering Task Force (IETF) Category: Standards Track Queensland University of Technology March 2011

Internet Engineering Task Force (IETF) Category: Standards Track Queensland University of Technology March 2011 Internet Engineering Task Force (IETF) K. Igoe Request for Comments: 6187 National Security Agency Category: Standards Track D. Stebila ISSN: 2070-1721 Queensland University of Technology March 2011 Abstract

More information

Category: Standards Track Vigil Security A. Malpani Malpani Consulting Services D. Cooper W. Polk NIST December 2007

Category: Standards Track Vigil Security A. Malpani Malpani Consulting Services D. Cooper W. Polk NIST December 2007 Network Working Group Request for Comments: 5055 Category: Standards Track T. Freeman Microsoft Corp R. Housley Vigil Security A. Malpani Malpani Consulting Services D. Cooper W. Polk NIST December 2007

More information

Certification Policy for Legal Representatives of Sole and Joint and Several Directors Certificates. Certificate Profile

Certification Policy for Legal Representatives of Sole and Joint and Several Directors Certificates. Certificate Profile Registro Nacional de Asociaciones. Número 171.443. CIF G-63287510 and Joint and Several Directors Certificates. Certificate Profile ANF Autoridad de Certificación Paseo de la Castellana, 79 28046 - Madrid

More information

MTAT Applied Cryptography

MTAT Applied Cryptography MTAT.07.017 Applied Cryptography Online Certificate Status Protocol (OCSP) University of Tartu Spring 2017 1 / 24 CRL shortcomings: Size of CRLs Online Certificate Status Protocol Client side complexity

More information

Certification Policy for Electronic Seal and Public Administration Electronic Seal. Certificate Profile

Certification Policy for Electronic Seal and Public Administration Electronic Seal. Certificate Profile Registro Nacional de Asociaciones. Número 171.443. CIF G-63287510 Administration. ANF Autoridad de Certificación Paseo de la Castellana, 79 28046 - Madrid (Spain) Telephone: 902 902 172 (Calls from Spain)

More information

HTML5 and Digital Signatures. Signature Creation Service 1.0. October 13, 2014

HTML5 and Digital Signatures. Signature Creation Service 1.0. October 13, 2014 HTML5 and Digital Signatures October 13, 2014 SPECIFICATION 2 (20) DOCUMENT MANAGEMENT Prepared by Pekka Laitinen / VRK Inspected by Approved by VERSION CONTROL version no. what

More information

Server-based Certificate Validation Protocol

Server-based Certificate Validation Protocol Server-based Certificate Validation Protocol Digital Certificate and PKI a public-key certificate is a digital certificate that binds a system entity's identity to a public key value, and possibly to additional

More information

SSL Certificates Certificate Policy (CP)

SSL Certificates Certificate Policy (CP) SSL Certificates Last Revision Date: February 26, 2015 Version 1.0 Revisions Version Date Description of changes Author s Name Draft 17 Jan 2011 Initial Release (Draft) Ivo Vitorino 1.0 26 Feb 2015 Full

More information

Interoperability Guidelines for Digital Signature Certificates issued under Information Technology Act

Interoperability Guidelines for Digital Signature Certificates issued under Information Technology Act for Digital Signature Certificates issued under Information Technology Act Version 2.0 December 2009 Controller of Certifying Authorities Department of Information Technology Ministry of Communications

More information

Digital Certificates Demystified

Digital Certificates Demystified Digital Certificates Demystified Ross Cooper, CISSP IBM Corporation RACF/PKI Development Poughkeepsie, NY Email: rdc@us.ibm.com August 9 th, 2012 Session 11622 Agenda Cryptography What are Digital Certificates

More information

Network Working Group. Updates: 2634 August 2007 Category: Standards Track

Network Working Group. Updates: 2634 August 2007 Category: Standards Track Network Working Group J. Schaad Request for Comments: 5035 Soaring Hawk Consulting Updates: 2634 August 2007 Category: Standards Track Status of This Memo Enhanced Security Services (ESS) Update: Adding

More information

Registro Nacional de Asociaciones. Número CIF G

Registro Nacional de Asociaciones. Número CIF G Registro Nacional de Asociaciones. Número 171.443. CIF G-63287510 Certificate for Secure Server (OV), Secure Server (DV), Secure Server (EV), Electronic Headquarters and Extended Validation Electronic

More information

CI Plus ECP Specification v1.0 ( )

CI Plus ECP Specification v1.0 ( ) Technical Specification CI Plus Specification. Enhanced Content Protection. 2 CI Plus LLP 31 Chertsey Street, Guildford, Surrey, GU1 4HD, UK A company registered in England and Wales Registered Number:

More information

Request for Comments: May 2006

Request for Comments: May 2006 Network Working Group Request for Comments: 4491 Updates: 3279 Category: Standards Track S. Leontiev, Ed. CRYPTO-PRO D. Shefanovski, Ed. Mobile TeleSystems OJSC May 2006 Status of This Memo Using the GOST

More information

Atomic Authorization

Atomic Authorization Atomic Authorization Jacob Dilles George Mason University 2009 Abstract This document details one solution to the problem of atomic authorization. The focus of this paper is on a document standard called

More information

Certificate Policy. Qualified certificates for legal persons represented by a physical person on SSCD - QCP+ Public. Version 1.1

Certificate Policy. Qualified certificates for legal persons represented by a physical person on SSCD - QCP+ Public. Version 1.1 a Certificate Policy Qualified certificates for legal persons represented by a physical person on SSCD - Q+ Public Version 1.1 Certipost NV ALL RIGHTS RESERVED. 2 18 SSCD - Q+ Public 1. Document control

More information

Public Key Infrastructures Chapter 11 Trust Center (Certification Authority)

Public Key Infrastructures Chapter 11 Trust Center (Certification Authority) Public Key Infrastructures Chapter 11 Trust Center (Certification Authority) Cryptography and Computer Algebra Prof. Dr. Johannes Buchmann Dr. Alexander Wiesmaier Trust center (TC) Trusted third party

More information

Certificate Management in Cisco ISE-PIC

Certificate Management in Cisco ISE-PIC A certificate is an electronic document that identifies an individual, a server, a company, or other entity and associates that entity with a public key. Public Key Infrastructure (PKI) is a cryptographic

More information

Validation Policy r tra is g e R ANF AC MALTA, LTD

Validation Policy r tra is g e R ANF AC MALTA, LTD Maltese Registrar of Companies Number C75870 and VAT number MT ANF AC MALTA, LTD B2 Industry Street, Qormi, QRM 3000 Malta Telephone: (+356) 2299 3100 Fax:(+356) 2299 3101 Web: www.anfacmalta.com Security

More information

Request for Comments: T. Polk NIST March 2004

Request for Comments: T. Polk NIST March 2004 Network Working Group Request for Comments: 3739 Obsoletes: 3039 Category: Standards Track S. Santesson Microsoft M. Nystrom RSA Security T. Polk NIST March 2004 Status of this Memo Internet X.509 Public

More information

ACGISS Public Employee Certificates

ACGISS Public Employee Certificates ACGISS Public Employee Certificates Certification policy V 2.0.1 (February 2017) Social Security IT Department c/ Doctor Tolosa Latour s/n 28041 Madrid Change control Version Observations Date 1.0 Original

More information

Internet Engineering Task Force (IETF) Request for Comments: 6403 Category: Informational ISSN: M. Peck November 2011

Internet Engineering Task Force (IETF) Request for Comments: 6403 Category: Informational ISSN: M. Peck November 2011 Internet Engineering Task Force (IETF) Request for Comments: 6403 Category: Informational ISSN: 2070-1721 L. Zieglar NSA S. Turner IECA M. Peck November 2011 Suite B Profile of Certificate Management over

More information

Obsoletes: 2632 July 2004 Category: Standards Track. Secure/Multipurpose Internet Mail Extensions (S/MIME) Version 3.1 Certificate Handling

Obsoletes: 2632 July 2004 Category: Standards Track. Secure/Multipurpose Internet Mail Extensions (S/MIME) Version 3.1 Certificate Handling Network Working Group B. Ramsdell, Editor Request for Comments: 3850 Sendmail, Inc. Obsoletes: 2632 July 2004 Category: Standards Track Secure/Multipurpose Internet Mail Extensions (S/MIME) Version 3.1

More information

Visible Digital Seals for Non-Electronic Documents

Visible Digital Seals for Non-Electronic Documents Technical Report: Visible Digital Seals for Non-Electronic Documents For Publication on the ICAO Website TECHNICAL REPORT Visible Digital Seals for Non-Electronic Documents DISCLAIMER: All reasonable precautions

More information

TCG. TCG Platform Attribute Credential Profile. TCG Published Copyright TCG Specification Version 1.0 Revision January 2018 Published

TCG. TCG Platform Attribute Credential Profile. TCG Published Copyright TCG Specification Version 1.0 Revision January 2018 Published TCG Platform Attribute Credential Profile Revision 16 16 January 2018 Published Contact: admin@trustedcomputinggroup.org TCG Published Copyright TCG 2018 TCG Copyright TCG 2018 TCG Platform Attribute Credential

More information

Version 3 X.509 Certificates

Version 3 X.509 Certificates Entrust Technologies White Paper Author: Ian Curry Date: July 1996 Version: 1.0 Entrust Technologies, 1997. All rights reserved. 1 1. Introduction This document provides a description of the version 3

More information

X.509 Internet Public Key Infrastructure Online Certificate Status Protocol - OCSP. Status of this Memo

X.509 Internet Public Key Infrastructure Online Certificate Status Protocol - OCSP. Status of this Memo Network Working Group Request for Comments: 2560 Category: Standards Track M. Myers VeriSign R. Ankney CertCo A. Malpani ValiCert S. Galperin My CFO C. Adams Entrust Technologies June 1999 Status of this

More information

Internet Engineering Task Force (IETF) Category: Informational. June New ASN.1 Modules for the Public Key Infrastructure Using X.

Internet Engineering Task Force (IETF) Category: Informational. June New ASN.1 Modules for the Public Key Infrastructure Using X. Internet Engineering Task Force (IETF) Request for Comments: 5912 Category: Informational ISSN: 2070-1721 P. Hoffman VPN Consortium J. Schaad Soaring Hawk Consulting June 2010 New ASN.1 Modules for the

More information

Updating OCSP. David Cooper

Updating OCSP. David Cooper Updating OCSP David Cooper Background Concerns raised about text in RFC 2560 being misinterpreted, particularly Section 4.2.2.2 on Authorized Responders Working group agreed to develop an update to RFC

More information

CSE 565 Computer Security Fall 2018

CSE 565 Computer Security Fall 2018 CSE 565 Computer Security Fall 2018 Lecture 11: Public Key Infrastructure Department of Computer Science and Engineering University at Buffalo 1 Lecture Outline Public key infrastructure Certificates Trust

More information

ETSI TS V1.1.1 ( ) Technical Specification

ETSI TS V1.1.1 ( ) Technical Specification TS 102 635-1 V1.1.1 (2009-08) Technical Specification Digital Audio Broadcasting (DAB); Middleware; Part 1: System aspects European Broadcasting Union Union Européenne de Radio-Télévision EBU UER 2 TS

More information