Crypt::GOST - The GOST Encryption Algorithm


Crypt-GOST documentation  | view source Contained in the Crypt-GOST distribution.

Index


NAME

Top

Crypt::GOST - The GOST Encryption Algorithm

SYNOPSIS

Top

use Crypt::GOST;

$cipher = Crypt::GOST->new($key);

$ciphertext = $cipher->encrypt($plaintext);

$plaintext = $cipher->decrypt($ciphertext);

DESCRIPTION

Top

GOST 28147-89 is a 64-bit symmetric block cipher with a 256-bit key developed in the former Soviet Union. Some information on it is available at <URL:http://vipul.net/gost/>.

This module implements GOST encryption. It supports the Crypt::CBC interface, with the functions described below. It also provides an interface that is backwards-compatible with Crypt::GOST 0.41, but its use in new code is discouraged.

Functions

blocksize

Returns the size (in bytes) of the block (8, in this case).

keysize

Returns the size (in bytes) of the key (32, in this case).

new($key)

This creates a new Crypt::GOST object with the specified key.

encrypt($data)

Encrypts blocksize() bytes of $data and returns the corresponding ciphertext.

decrypt($data)

Decrypts blocksize() bytes of $data and returns the corresponding plaintext.

SEE ALSO

Top

Crypt::CBC, Crypt::Twofish, Crypt::TEA

ACKNOWLEDGEMENTS

Top

Vipul Ved Prakash

For writing Crypt::GOST 0.41, and reviewing the current version.

AUTHOR

Top

Abhijit Menon-Sen <ams@wiw.org>

Copyright 2001 Abhijit Menon-Sen. All rights reserved.

This software is distributed under the terms of the Artistic License <URL:http://ams.wiw.org/code/artistic.txt>.


Crypt-GOST documentation  | view source Contained in the Crypt-GOST distribution.