Signature Authentication in IKEv2
draft-kivinen-ipsecme-signature-auth-02
The information below is for an old version of the document |
Document |
Type |
|
Active Internet-Draft (candidate for ipsecme WG)
|
|
Last updated |
|
2013-10-23
(latest revision 2013-10-18)
|
|
Stream |
|
IETF
|
|
Intended RFC status |
|
Proposed Standard
|
|
Formats |
|
plain text
pdf
html
bibtex
|
Stream |
WG state
|
|
Call For Adoption By WG Issued
|
|
Document shepherd |
|
None
|
IESG |
IESG state |
|
I-D Exists
|
|
Consensus Boilerplate |
|
Unknown
|
|
Telechat date |
|
|
|
Responsible AD |
|
(None)
|
|
Send notices to |
|
(None)
|
IP Security Maintenance and Extensions T. Kivinen
(ipsecme) INSIDE Secure
Internet-Draft October 18, 2013
Updates: RFC 5996 (if approved)
Intended status: Standards Track
Expires: April 21, 2014
Signature Authentication in IKEv2
draft-kivinen-ipsecme-signature-auth-02.txt
Abstract
The Internet Key Exchange Version 2 (IKEv2) protocol has limited
support for the Elliptic Curve Digital Signature Algorithm (ECDSA).
The current version only includes support for three Elliptic Curve
groups, and there is fixed hash algorithm tied to each curve. This
document generalizes the IKEv2 signature support so it can support
any signature method supported by the PKIX and also adds signature
hash algorithm negotiation. This is generic mechanism, and is not
limited to ECDSA, but can also be used with other signature
algorithms.
Status of this Memo
This Internet-Draft is submitted in full conformance with the
provisions of BCP 78 and BCP 79.
Internet-Drafts are working documents of the Internet Engineering
Task Force (IETF). Note that other groups may also distribute
working documents as Internet-Drafts. The list of current Internet-
Drafts is at http://datatracker.ietf.org/drafts/current/.
Internet-Drafts are draft documents valid for a maximum of six months
and may be updated, replaced, or obsoleted by other documents at any
time. It is inappropriate to use Internet-Drafts as reference
material or to cite them other than as "work in progress."
This Internet-Draft will expire on April 21, 2014.
Copyright Notice
Copyright (c) 2013 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(http://trustee.ietf.org/license-info) in effect on the date of
Kivinen Expires April 21, 2014 [Page 1]
Internet-Draft Signature Authentication in IKEv2 October 2013
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
Table of Contents
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . . 3
2. Terminology . . . . . . . . . . . . . . . . . . . . . . . . . 4
3. Authentication Payload . . . . . . . . . . . . . . . . . . . . 4
4. Hash Algorithm Notification . . . . . . . . . . . . . . . . . 6
5. Security Considerations . . . . . . . . . . . . . . . . . . . 7
6. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 8
7. Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . 8
8. References . . . . . . . . . . . . . . . . . . . . . . . . . . 8
8.1. Normative References . . . . . . . . . . . . . . . . . . . 8
8.2. Informative References . . . . . . . . . . . . . . . . . . 9
Appendix A. Commonly used ASN.1 objects . . . . . . . . . . . . . 10
A.1. PKCS#1 1.5 RSA Encryption . . . . . . . . . . . . . . . . 10
A.1.1. sha1WithRSAEncryption . . . . . . . . . . . . . . . . 10
A.1.2. sha256WithRSAEncryption . . . . . . . . . . . . . . . 10
A.1.3. sha384WithRSAEncryption . . . . . . . . . . . . . . . 11
A.1.4. sha512WithRSAEncryption . . . . . . . . . . . . . . . 11
A.2. DSA . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
A.2.1. dsa-with-sha1 . . . . . . . . . . . . . . . . . . . . 11
A.2.2. dsa-with-sha256 . . . . . . . . . . . . . . . . . . . 11
A.3. ECDSA . . . . . . . . . . . . . . . . . . . . . . . . . . 12
A.3.1. ecdsa-with-sha1 . . . . . . . . . . . . . . . . . . . 12
A.3.2. ecdsa-with-sha256 . . . . . . . . . . . . . . . . . . 12
A.3.3. ecdsa-with-sha384 . . . . . . . . . . . . . . . . . . 12
A.3.4. ecdsa-with-sha512 . . . . . . . . . . . . . . . . . . 12
A.4. RSASSA-PSS . . . . . . . . . . . . . . . . . . . . . . . . 13
A.4.1. RSASSA-PSS with empty parameters . . . . . . . . . . . 13
A.4.2. RSASSA-PSS with default parameters . . . . . . . . . . 13
Appendix B. Examples . . . . . . . . . . . . . . . . . . . . . . 13
Author's Address . . . . . . . . . . . . . . . . . . . . . . . . . 13
Kivinen Expires April 21, 2014 [Page 2]
Internet-Draft Signature Authentication in IKEv2 October 2013
1. Introduction
This document adds new IKEv2 ([RFC5996]) authentication method to
support all kinds of signature methods. The current signature based
Show full document text