File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -95,6 +95,11 @@ pub const NID_sect409r1: c_int = 732;
9595pub const NID_sect571k1 : c_int = 733 ;
9696pub const NID_sect571r1 : c_int = 734 ;
9797
98+ #[ cfg( ossl110) ]
99+ pub const NID_brainpoolP224r1 : c_int = 925 ;
100+ #[ cfg( libressl) ]
101+ pub const NID_brainpoolP224r1 : c_int = 926 ;
102+
98103#[ cfg( ossl110) ]
99104pub const NID_brainpoolP256r1 : c_int = 927 ;
100105#[ cfg( libressl) ]
@@ -115,6 +120,11 @@ pub const NID_brainpoolP512r1: c_int = 933;
115120#[ cfg( libressl) ]
116121pub const NID_brainpoolP512r1 : c_int = 934 ;
117122
123+ #[ cfg( ossl110) ]
124+ pub const NID_brainpoolP224t1 : c_int = 926 ;
125+ #[ cfg( libressl) ]
126+ pub const NID_brainpoolP224t1 : c_int = 927 ;
127+
118128#[ cfg( ossl110) ]
119129pub const NID_brainpoolP256t1 : c_int = 928 ;
120130#[ cfg( libressl) ]
Original file line number Diff line number Diff line change @@ -215,6 +215,8 @@ impl Nid {
215215 pub const SECT571K1 : Nid = Nid ( ffi:: NID_sect571k1 ) ;
216216 pub const SECT571R1 : Nid = Nid ( ffi:: NID_sect571r1 ) ;
217217 #[ cfg( any( ossl110, libressl) ) ]
218+ pub const BRAINPOOL_P224R1 : Nid = Nid ( ffi:: NID_brainpoolP224r1 ) ;
219+ #[ cfg( any( ossl110, libressl) ) ]
218220 pub const BRAINPOOL_P256R1 : Nid = Nid ( ffi:: NID_brainpoolP256r1 ) ;
219221 #[ cfg( any( ossl110, libressl) ) ]
220222 pub const BRAINPOOL_P320R1 : Nid = Nid ( ffi:: NID_brainpoolP320r1 ) ;
@@ -223,6 +225,8 @@ impl Nid {
223225 #[ cfg( any( ossl110, libressl) ) ]
224226 pub const BRAINPOOL_P512R1 : Nid = Nid ( ffi:: NID_brainpoolP512r1 ) ;
225227 #[ cfg( any( ossl110, libressl) ) ]
228+ pub const BRAINPOOL_P224T1 : Nid = Nid ( ffi:: NID_brainpoolP224t1 ) ;
229+ #[ cfg( any( ossl110, libressl) ) ]
226230 pub const BRAINPOOL_P256T1 : Nid = Nid ( ffi:: NID_brainpoolP256t1 ) ;
227231 #[ cfg( any( ossl110, libressl) ) ]
228232 pub const BRAINPOOL_P320T1 : Nid = Nid ( ffi:: NID_brainpoolP320t1 ) ;
You can’t perform that action at this time.
0 commit comments