Ruby
2.0.0p247(2013-06-27revision41674)
|
00001 /* 00002 * $Id: ossl_bn.h 25189 2009-10-02 12:04:37Z akr $ 00003 * 'OpenSSL for Ruby' project 00004 * Copyright (C) 2001-2002 Michal Rokos <m.rokos@sh.cvut.cz> 00005 * All rights reserved. 00006 */ 00007 /* 00008 * This program is licenced under the same licence as Ruby. 00009 * (See the file 'LICENCE'.) 00010 */ 00011 #if !defined(_OSSL_BN_H_) 00012 #define _OSSL_BN_H_ 00013 00014 extern VALUE cBN; 00015 extern VALUE eBNError; 00016 00017 extern BN_CTX *ossl_bn_ctx; 00018 00019 VALUE ossl_bn_new(const BIGNUM *); 00020 BIGNUM *GetBNPtr(VALUE); 00021 void Init_ossl_bn(void); 00022 00023 00024 #endif /* _OSS_BN_H_ */ 00025 00026