xref: /freebsd/crypto/openssl/providers/common/der/wrap.asn1 (revision b077aed33b7b6aefca7b17ddb250cf521f938613)
1*b077aed3SPierre Pronchery-- Copyright 2022 The OpenSSL Project Authors. All Rights Reserved.
2*b077aed3SPierre Pronchery--
3*b077aed3SPierre Pronchery-- Licensed under the Apache License 2.0 (the "License").  You may not use
4*b077aed3SPierre Pronchery-- this file except in compliance with the License.  You can obtain a copy
5*b077aed3SPierre Pronchery-- in the file LICENSE in the source distribution or at
6*b077aed3SPierre Pronchery-- https://www.openssl.org/source/license.html
7*b077aed3SPierre Pronchery
8*b077aed3SPierre Pronchery-- -------------------------------------------------------------------
9*b077aed3SPierre Pronchery-- Taken from RFC 3370, Section 4.3.1 Triple-DES Key Wrap
10*b077aed3SPierre Pronchery-- (https://tools.ietf.org/html/rfc3370)
11*b077aed3SPierre Pronchery
12*b077aed3SPierre Proncheryid-alg-CMS3DESwrap OBJECT IDENTIFIER ::= {
13*b077aed3SPierre Pronchery    iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1) pkcs-9(9) smime(16) alg(3) 6
14*b077aed3SPierre Pronchery}
15*b077aed3SPierre Pronchery
16*b077aed3SPierre Pronchery-- -------------------------------------------------------------------
17*b077aed3SPierre Pronchery-- Taken from RFC 3394, Section 3. Object Identifiers
18*b077aed3SPierre Pronchery-- (https://tools.ietf.org/html/rfc3565)
19*b077aed3SPierre Pronchery
20*b077aed3SPierre Proncheryaes  OBJECT IDENTIFIER  ::=  {
21*b077aed3SPierre Pronchery    joint-iso-itu-t(2) country(16) us(840) organization(1) gov(101) csor(3) nistAlgorithm(4) 1
22*b077aed3SPierre Pronchery}
23*b077aed3SPierre Pronchery
24*b077aed3SPierre Proncheryid-aes128-wrap OBJECT IDENTIFIER ::= { aes 5 }
25*b077aed3SPierre Proncheryid-aes192-wrap OBJECT IDENTIFIER ::= { aes 25 }
26*b077aed3SPierre Proncheryid-aes256-wrap OBJECT IDENTIFIER ::= { aes 45 }
27