diff options
author | Ingela Anderton Andin <[email protected]> | 2013-01-23 12:11:58 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2013-01-23 12:11:58 +0100 |
commit | 143c3f55a913c01d78893331795331336be22d1f (patch) | |
tree | 1a31efda2a1f36ddd240a597d1f788ce93060771 /lib/public_key/asn1/PKCS-10.asn1 | |
parent | 0ab216f3dc96890b50f7430895ad5d7f6251f129 (diff) | |
download | otp-143c3f55a913c01d78893331795331336be22d1f.tar.gz otp-143c3f55a913c01d78893331795331336be22d1f.tar.bz2 otp-143c3f55a913c01d78893331795331336be22d1f.zip |
public_key: Include some PKCS-9 support needed by PKCS-10
Due to some limitations in the ASN-1 compiler we inline
some PKCS-9 in other specs for now.
Also corrected documentation.
Diffstat (limited to 'lib/public_key/asn1/PKCS-10.asn1')
-rw-r--r-- | lib/public_key/asn1/PKCS-10.asn1 | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/lib/public_key/asn1/PKCS-10.asn1 b/lib/public_key/asn1/PKCS-10.asn1 index 333104d230..5ada81c257 100644 --- a/lib/public_key/asn1/PKCS-10.asn1 +++ b/lib/public_key/asn1/PKCS-10.asn1 @@ -20,12 +20,36 @@ IMPORTS ATTRIBUTE FROM InformationFramework informationFramework - Name + Name, Extensions, DirectoryString FROM PKIX1Explicit88 --InformationFramework informationFramework ALGORITHM FROM PKCS-7; --AuthenticationFramework authenticationFramework; +-- start inlined from PKCS-9 + +--pkcs-9-ub-pkcs9String INTEGER ::= 255 +--pkcs-9-ub-challengePassword INTEGER ::= pkcs-9-ub-pkcs9String +pkcs-9-at-challengePassword OBJECT IDENTIFIER ::= {pkcs-9 7} + +challengePassword ATTRIBUTE ::= { + WITH SYNTAX DirectoryString --{pkcs-9-ub-challengePassword} + SINGLE VALUE TRUE + ID pkcs-9-at-challengePassword +} + +pkcs-9-at-extensionRequest OBJECT IDENTIFIER ::= {pkcs-9 14} + +extensionRequest ATTRIBUTE ::= { + WITH SYNTAX ExtensionRequest + SINGLE VALUE TRUE + ID pkcs-9-at-extensionRequest +} + +ExtensionRequest ::= Extensions + +-- end inlined from PKCS-9 + -- Certificate requests CertificationRequestInfo ::= SEQUENCE { |