Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8213517
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T11:08:45+00:00 2026-06-07T11:08:45+00:00

With PHP, I’m trying to emulate the Perl functionality of: #!/usr/bin/perl use DBI; use

  • 0

With PHP, I’m trying to emulate the Perl functionality of:

#!/usr/bin/perl
use DBI;
use Crypt::ECB qw(encrypt decrypt encrypt_hex decrypt_hex);
$code = encrypt_hex($key, "Blowfish", $secret);

My results haven’t generated anything close, such as:

$code = crypt($key, '$2a$07$'."$secret$");

Any suggestions?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T11:08:47+00:00Added an answer on June 7, 2026 at 11:08 am

    Took me some time to figure it out. @daxim’s use of mcrypt put me down the path of trying the mcrypt libraries.

    $td = mcrypt_module_open('blowfish', '', 'ecb', '');
    $iv = mcrypt_create_iv(mcrypt_enc_get_iv_size($td), MCRYPT_RAND);
    mcrypt_generic_init($td, $key, $iv);
    $encrypted_data = mcrypt_generic($td, $secret);
    mcrypt_generic_deinit($td);
    mcrypt_module_close($td);
    
    $unpacked = unpack("H*", $encrypted_data);
    $hexed = implode($unpacked);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

PHP version: 5.3.5 Apache version 2 OS: Windows Server 2008 R2 I am trying
PHP 5.2.15 I am trying to replace {date[F]} with the date function. I have
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
PHP Redirect with Post Data Hi, I am a newbie PHP programmer and trying
PHP's Heredoc examples always seem to use EOT (and sometimes EOD) as the seperating
I'm trying to create an if statement in PHP that prevents a single post
PHP is always returning false when I use in_array(), and whether it is or
PHP version 5.2.2.6 OS: Windows Server 2003 I am trying to write a PHP
PHP has PHP-FPM, a pool of PHP processes that run, are managed, go away
PHP - Access MSSQL datetime column from the returned array Array ( [0] =>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.