summaryrefslogtreecommitdiffstats
path: root/perl/openssl_cipher.xs
diff options
context:
space:
mode:
authorRalf S. Engelschall <rse@openssl.org>1999-02-10 09:38:31 +0000
committerRalf S. Engelschall <rse@openssl.org>1999-02-10 09:38:31 +0000
commit8073036dd62848b616c6a817c155c3255074ec83 (patch)
tree8ae62e46c555ccc9e65b5dffd43cff25234c96af /perl/openssl_cipher.xs
parent0517335e3cdc565edbecb53dec8ef9091c936763 (diff)
Overhauled the Perl interface (perl/*):
- ported BN stuff to OpenSSL's different BN library - made the perl/ source tree CVS-aware - renamed the package from SSLeay to OpenSSL (the files still contain their history because I've copied them in the repository) - removed obsolete files (the test scripts will be replaced by better Test::Harness variants in the future)
Diffstat (limited to 'perl/openssl_cipher.xs')
-rw-r--r--perl/openssl_cipher.xs9
1 files changed, 5 insertions, 4 deletions
diff --git a/perl/openssl_cipher.xs b/perl/openssl_cipher.xs
index 1044d7a4ef..fb4c632995 100644
--- a/perl/openssl_cipher.xs
+++ b/perl/openssl_cipher.xs
@@ -1,4 +1,5 @@
-#include "p5SSLeay.h"
+
+#include "openssl.h"
int boot_cipher()
{
@@ -6,7 +7,7 @@ int boot_cipher()
return(1);
}
-MODULE = SSLeay::Cipher PACKAGE = SSLeay::Cipher PREFIX = p5_EVP_C_
+MODULE = OpenSSL::Cipher PACKAGE = OpenSSL::Cipher PREFIX = p5_EVP_C_
VERSIONCHECK: DISABLE
@@ -22,14 +23,14 @@ p5_EVP_C_new(...)
else if ((items == 2) && SvPOK(ST(1)))
name=SvPV(ST(1),na);
else
- croak("Usage: SSLeay::Cipher::new(type)");
+ croak("Usage: OpenSSL::Cipher::new(type)");
PUSHs(sv_newmortal());
c=EVP_get_cipherbyname(name);
if (c != NULL)
{
ctx=malloc(sizeof(EVP_CIPHER_CTX));
EVP_EncryptInit(ctx,c,NULL,NULL);
- sv_setref_pv(ST(0), "SSLeay::Cipher", (void*)ctx);
+ sv_setref_pv(ST(0), "OpenSSL::Cipher", (void*)ctx);
}
datum