Ruby  3.1.0dev(2021-09-10revisionb76ad15ed0da636161de0243c547ee1e6fc95681)
ossl_bn.h
Go to the documentation of this file.
1 /*
2  * 'OpenSSL for Ruby' project
3  * Copyright (C) 2001-2002 Michal Rokos <m.rokos@sh.cvut.cz>
4  * All rights reserved.
5  */
6 /*
7  * This program is licensed under the same licence as Ruby.
8  * (See the file 'LICENCE'.)
9  */
10 #if !defined(_OSSL_BN_H_)
11 #define _OSSL_BN_H_
12 
13 extern VALUE cBN;
14 extern VALUE eBNError;
15 
16 BN_CTX *ossl_bn_ctx_get(void);
17 #define ossl_bn_ctx ossl_bn_ctx_get()
18 
19 #define GetBNPtr(obj) ossl_bn_value_ptr(&(obj))
20 
21 VALUE ossl_bn_new(const BIGNUM *);
22 BIGNUM *ossl_bn_value_ptr(volatile VALUE *);
23 void Init_ossl_bn(void);
24 
25 
26 #endif /* _OSS_BN_H_ */
cBN
VALUE cBN
Definition: ossl_bn.c:50
ossl_bn_ctx_get
BN_CTX * ossl_bn_ctx_get(void)
Definition: ossl_bn.c:174
ossl_bn_new
VALUE ossl_bn_new(const BIGNUM *)
Definition: ossl_bn.c:62
Init_ossl_bn
void Init_ossl_bn(void)
Definition: ossl_bn.c:1234
VALUE
unsigned long VALUE
Definition: value.h:38
eBNError
VALUE eBNError
Definition: ossl_bn.c:56
ossl_bn_value_ptr
BIGNUM * ossl_bn_value_ptr(volatile VALUE *)
Definition: ossl_bn.c:140