Skip Menu |

This queue is for tickets about the MCrypt CPAN distribution.

Report information
The Basics
Id: 41127
Status: new
Priority: 0/
Queue: MCrypt

People
Owner: Nobody in particular
Requestors: xmarchais [...] ipercast.net
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: (no value)
Fixed in: (no value)



Subject: perl: symbol lookup error
On debian etch 2.6.18-6-486 - perl 5.5.8 and libcrypt4. Following error : perl: symbol lookup error: /usr/local/lib/perl/5.8.8/auto/MCrypt/MCrypt.so: undefined symbol: mcrypt_get_block_size Here is the prog, decrypt a previous crypted string. use MCrypt ; my $key = "c2z5ezd6adg7za9i"; my $data = "QXbXyX5slwhU9xaOzOBR0tzKDKDXDHldoefGmuVP9m/Tsq2r0km92QEjqJRiBlWAeUcRAb17c Mres4JliYEXUA"; my $iv = "12345678" ; # 8 bytes $ciphertext = mcrypt_cfb( MCrypt::MCRYPT_BLOWFISH_448, $key, $data, MCrypt::MCRYPT_DECRYPT, $iv ) ; Regards,