The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Search results for "distribution:CryptX crypt::cbc"

Crypt::Mode::CBC - Block cipher mode CBC [Cipher-block chaining] River stage three • 70 direct dependents • 267 total dependents

This module implements CBC cipher mode. NOTE: it works only with ciphers from CryptX (Crypt::Cipher::NNNN)....

MIK/CryptX-0.080 - 04 Oct 2023 11:07:16 UTC

CryptX - Cryptographic toolkit River stage three • 70 direct dependents • 267 total dependents

Perl modules providing a cryptography based on LibTomCrypt <https://github.com/libtom/libtomcrypt> library. * Symmetric ciphers - see Crypt::Cipher and related modules Crypt::Cipher::AES, Crypt::Cipher::Anubis, Crypt::Cipher::Blowfish, Crypt::Cipher:...

MIK/CryptX-0.080 - 04 Oct 2023 11:07:16 UTC

Crypt::Cipher - Generic interface to cipher functions River stage three • 70 direct dependents • 267 total dependents

Provides an interface to various symmetric cipher algorithms. BEWARE: This module implements just elementary "one-block-(en|de)cryption" operation - if you want to encrypt/decrypt generic data you have to use some of the cipher block modes - check fo...

MIK/CryptX-0.080 - 04 Oct 2023 11:07:16 UTC

Crypt::Misc - miscellaneous functions related to (or used by) CryptX River stage three • 70 direct dependents • 267 total dependents

use Crypt::Misc ':all'; # Base64 and Base64/URL-safe functions $base64 = encode_b64($rawbytes); $rawbytes = decode_b64($base64); $base64url = encode_b64u($encode_b64u); $rawbytes = decode_b64u($base64url); # read/write file $rawdata = read_rawfile($f...

MIK/CryptX-0.080 - 04 Oct 2023 11:07:16 UTC

Crypt::Cipher::DES - Symmetric cipher DES, key size: 64[56] bits River stage three • 70 direct dependents • 267 total dependents

This module implements the DES cipher. Provided interface is compliant with Crypt::CBC module. BEWARE: This module implements just elementary "one-block-(en|de)cryption" operation - if you want to encrypt/decrypt generic data you have to use some of ...

MIK/CryptX-0.080 - 04 Oct 2023 11:07:16 UTC

Crypt::Cipher::RC6 - Symmetric cipher RC6, key size: 64-1024 bits River stage three • 70 direct dependents • 267 total dependents

This module implements the RC6 cipher. Provided interface is compliant with Crypt::CBC module. BEWARE: This module implements just elementary "one-block-(en|de)cryption" operation - if you want to encrypt/decrypt generic data you have to use some of ...

MIK/CryptX-0.080 - 04 Oct 2023 11:07:16 UTC

Crypt::Cipher::RC5 - Symmetric cipher RC5, key size: 64-1024 bits River stage three • 70 direct dependents • 267 total dependents

This module implements the RC5 cipher. Provided interface is compliant with Crypt::CBC module. BEWARE: This module implements just elementary "one-block-(en|de)cryption" operation - if you want to encrypt/decrypt generic data you have to use some of ...

MIK/CryptX-0.080 - 04 Oct 2023 11:07:16 UTC

Crypt::Cipher::RC2 - Symmetric cipher RC2, key size: 40-1024 bits River stage three • 70 direct dependents • 267 total dependents

This module implements the RC2 cipher. Provided interface is compliant with Crypt::CBC module. BEWARE: This module implements just elementary "one-block-(en|de)cryption" operation - if you want to encrypt/decrypt generic data you have to use some of ...

MIK/CryptX-0.080 - 04 Oct 2023 11:07:16 UTC

Crypt::PK::DSA - Public key cryptography based on DSA River stage three • 70 direct dependents • 267 total dependents

MIK/CryptX-0.080 - 04 Oct 2023 11:07:16 UTC

Crypt::PK::RSA - Public key cryptography based on RSA River stage three • 70 direct dependents • 267 total dependents

The module provides a full featured RSA implementation....

MIK/CryptX-0.080 - 04 Oct 2023 11:07:16 UTC

Crypt::PK::ECC - Public key cryptography based on EC River stage three • 70 direct dependents • 267 total dependents

The module provides a set of core ECC functions as well as implementation of ECDSA and ECDH. Supports elliptic curves "y^2 = x^3 + a*x + b" over prime fields "Fp = Z/pZ" (binary fields not supported)....

MIK/CryptX-0.080 - 04 Oct 2023 11:07:16 UTC

Crypt::Cipher::AES - Symmetric cipher AES (aka Rijndael), key size: 128/192/256 bits River stage three • 70 direct dependents • 267 total dependents

This module implements the AES cipher. Provided interface is compliant with Crypt::CBC module. BEWARE: This module implements just elementary "one-block-(en|de)cryption" operation - if you want to encrypt/decrypt generic data you have to use some of ...

MIK/CryptX-0.080 - 04 Oct 2023 11:07:16 UTC

Crypt::Cipher::IDEA - Symmetric cipher IDEA, key size: 128 bits River stage three • 70 direct dependents • 267 total dependents

This module implements the IDEA cipher. Provided interface is compliant with Crypt::CBC module. BEWARE: This module implements just elementary "one-block-(en|de)cryption" operation - if you want to encrypt/decrypt generic data you have to use some of...

MIK/CryptX-0.080 - 04 Oct 2023 11:07:16 UTC

Crypt::Cipher::SEED - Symmetric cipher SEED, key size: 128 bits River stage three • 70 direct dependents • 267 total dependents

This module implements the SEED cipher. Provided interface is compliant with Crypt::CBC module. BEWARE: This module implements just elementary "one-block-(en|de)cryption" operation - if you want to encrypt/decrypt generic data you have to use some of...

MIK/CryptX-0.080 - 04 Oct 2023 11:07:16 UTC

Crypt::Cipher::XTEA - Symmetric cipher XTEA, key size: 128 bits River stage three • 70 direct dependents • 267 total dependents

This module implements the XTEA cipher. Provided interface is compliant with Crypt::CBC module. BEWARE: This module implements just elementary "one-block-(en|de)cryption" operation - if you want to encrypt/decrypt generic data you have to use some of...

MIK/CryptX-0.080 - 04 Oct 2023 11:07:16 UTC

Crypt::Mode::ECB - Block cipher mode ECB [Electronic codebook] River stage three • 70 direct dependents • 267 total dependents

This module implements ECB cipher mode. NOTE: it works only with ciphers from CryptX (Crypt::Cipher::NNNN). BEWARE: ECB is inherently insecure, if you are not sure go for Crypt::Mode::CBC!...

MIK/CryptX-0.080 - 04 Oct 2023 11:07:16 UTC

Crypt::PK::X25519 - Asymmetric cryptography based on X25519 River stage three • 70 direct dependents • 267 total dependents

*Since: CryptX-0.067*...

MIK/CryptX-0.080 - 04 Oct 2023 11:07:16 UTC

Crypt::Cipher::CAST5 - Symmetric cipher CAST5 (aka CAST-128), key size: 40-128 bits River stage three • 70 direct dependents • 267 total dependents

This module implements the CAST5 cipher. Provided interface is compliant with Crypt::CBC module. BEWARE: This module implements just elementary "one-block-(en|de)cryption" operation - if you want to encrypt/decrypt generic data you have to use some o...

MIK/CryptX-0.080 - 04 Oct 2023 11:07:16 UTC

Crypt::Cipher::Anubis - Symmetric cipher Anubis, key size: 128-320 bits River stage three • 70 direct dependents • 267 total dependents

This module implements the Anubis cipher. Provided interface is compliant with Crypt::CBC module. BEWARE: This module implements just elementary "one-block-(en|de)cryption" operation - if you want to encrypt/decrypt generic data you have to use some ...

MIK/CryptX-0.080 - 04 Oct 2023 11:07:16 UTC

Crypt::Cipher::MULTI2 - Symmetric cipher MULTI2, key size: 320 bits River stage three • 70 direct dependents • 267 total dependents

This module implements the MULTI2 cipher. Provided interface is compliant with Crypt::CBC module. BEWARE: This module implements just elementary "one-block-(en|de)cryption" operation - if you want to encrypt/decrypt generic data you have to use some ...

MIK/CryptX-0.080 - 04 Oct 2023 11:07:16 UTC
35 results (0.073 seconds)