Enable AES Encryption in Perl 5.24.1

How do we implement AES encryption in Perl? Are there standard modules which helps us do so?
The intention is to use an AES encryption which has standard libraries or wrapper available for other technologies like .Net and Delphi, so that the handshaking can be done between technologies and interoperability can be achieved.

You may want to look into the Crypt module: Crypt::OpenSSL::AES - A Perl wrapper around OpenSSL's AES library - metacpan.org

There are probably others and plenty of resources around the net.

Cheers,

-JR