Result:
Your query is still running in background...Search in progress... at this time found 18 distributions and 60 files matching your query.
Next refresh should show more results. ( run in 1.248 )


AC-Yenta

 view release on metacpan or  search on metacpan

lib/AC/Yenta/Crypto.pm  view on Meta::CPAN


    # pad
    my $pbuf = $buf;
    $pbuf .= "\0" x (16 - length($pbuf) & 0xF) if length($pbuf) & 0xF;

    my $aes    = Crypt::Rijndael->new( $key, Crypt::Rijndael::MODE_CBC );
    $aes->set_iv( $iv );
    my $ct     = $aes->encrypt( $pbuf );
    my $hmac   = hmac_sha256_base64($ct, $key);

    my $eb     = ACPEncrypt->encode( {

lib/AC/Yenta/Crypto.pm  view on Meta::CPAN

    my $iv     = $me->_iv($key, $seqno, $nonce);

    my $hmac   = hmac_sha256_base64($ed->{ciphertext}, $key);
    die "cannot decrypt: hmac mismatch\n" unless $hmac eq $ed->{hmac};

    my $aes    = Crypt::Rijndael->new( $key, Crypt::Rijndael::MODE_CBC );
    $aes->set_iv( $iv );
    my $pt     = substr($aes->decrypt( $ed->{ciphertext} ), 0, $ed->{length});

    debug("decrypted <$seqno,$nonce,$hmac>");

 view all matches for this distribution


AES128

 view release on metacpan or  search on metacpan

tiny-AES-c/README.md  view on Meta::CPAN

### Tiny AES in C

This is a small and portable implementation of the AES [ECB](https://en.wikipedia.org/wiki/Block_cipher_mode_of_operation#Electronic_Codebook_.28ECB.29), [CTR](https://en.wikipedia.org/wiki/Block_cipher_mode_of_operation#Counter_.28CTR.29) and [CBC](...

You can override the default key-size of 128 bit with 192 or 256 bit by defining the symbols AES192 or AES256 in `aes.h`.

The API is very simple and looks like this (I am using C99 `<stdint.h>`-style annotated types):

tiny-AES-c/README.md  view on Meta::CPAN


/* Then start encrypting and decrypting with the functions below: */
void AES_ECB_encrypt(struct AES_ctx* ctx, uint8_t* buf);
void AES_ECB_decrypt(struct AES_ctx* ctx, uint8_t* buf);

void AES_CBC_encrypt_buffer(struct AES_ctx* ctx, uint8_t* buf, uint32_t length);
void AES_CBC_decrypt_buffer(struct AES_ctx* ctx, uint8_t* buf, uint32_t length);

/* Same function for encrypting as for decrypting in CTR mode */
void AES_CTR_xcrypt_buffer(struct AES_ctx* ctx, uint8_t* buf, uint32_t length);
```

Note: 
 * No padding is provided so for CBC and ECB all buffers should be multiples of 16 bytes. For padding [PKCS7](https://en.wikipedia.org/wiki/Padding_(cryptography)#PKCS7) is recommendable.
 * ECB mode is considered unsafe for most uses and is not implemented in streaming mode. If you need this mode, call the function for every block of 16 bytes you need encrypted. See [wikipedia's article on ECB](https://en.wikipedia.org/wiki/Block_cip...

You can choose to use any or all of the modes-of-operations, by defining the symbols CBC, CTR or ECB. See the header file for clarification.

C++ users should `#include` [aes.hpp](https://github.com/kokke/tiny-AES-c/blob/master/aes.hpp) instead of [aes.h](https://github.com/kokke/tiny-AES-c/blob/master/aes.h)

There is no built-in error checking or protection from out-of-bounds memory access errors as a result of malicious input.

tiny-AES-c/README.md  view on Meta::CPAN

I've successfully used the code on 64bit x86, 32bit ARM and 8 bit AVR platforms.


GCC size output when only CTR mode is compiled for ARM:

    $ arm-none-eabi-gcc -Os -DCBC=0 -DECB=0 -DCTR=1 -c aes.c
    $ size aes.o
       text    data     bss     dec     hex filename
       1203       0       0    1203     4b3 aes.o

.. and when compiling for the THUMB instruction set, we end up just below 1K in code size.

    $ arm-none-eabi-gcc -Os -mthumb -DCBC=0 -DECB=0 -DCTR=1 -c aes.c
    $ size aes.o
       text    data     bss     dec     hex filename
        955       0       0     955     3bb aes.o


 view all matches for this distribution


AI-TensorFlow-Libtensorflow

 view release on metacpan or  search on metacpan

lib/AI/TensorFlow/Libtensorflow/Manual/Notebook/InferenceUsingTFHubEnformerGeneExprPredModel.pod  view on Meta::CPAN

      IPerl->png( bytestream => path($plot_output_path)->slurp_raw );
  }

B<DISPLAY>:

=for html <span style="display:inline-block;margin-left:1em;"><p><img						src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+gAAAMgCAIAAAA/et9qAAAgAElEQVR4nOzdd2AUVeIH8Ddb0jshBAIEpSo1GjoIpyAgCOqd3uGdoGBBUQQFRUVBRbkTf9gOBQucqFiwUhSSgJQYCCSBkJBAet1k...

=head2 Parts of the original notebook that fall outside the scope

In the orignal notebook, there are several more steps that have not been ported here:

 view all matches for this distribution


ARCv2

 view release on metacpan or  search on metacpan

lib/Arc/Connection/Server.pm  view on Meta::CPAN

		unless defined $this->{commands};
}

## Callback function to canonicalize the username (SASL)
## see Authen::SASL(::Cyrus) for parameter list and how to use.
sub _CBCanonUser
{
	my ($this,$type,$realm,$maxlen,$user) = @_;
	return $user;
}

lib/Arc/Connection/Server.pm  view on Meta::CPAN


	# Setting the Callback for getting the username
	# This has to happen just before the object-creation of cyrus sasl
	# because there is no way to set a callback after sasl_*_new
	$this->{__sasl}->callback(
		canonuser => [ \&_CBCanonUser, $this ],
		checkpass => $this->{sasl_cb_checkpass},
		getsecret => $this->{sasl_cb_getsecret},
	);

	my $sasl = $this->{_sasl} =

 view all matches for this distribution


Acme-Base64

 view release on metacpan or  search on metacpan

t/app.t  view on Meta::CPAN

#!perl

use Acme::Base64;

dXNlIFRlc3Q6Ok1vcmUgdGVzdHMgPT4gMTsKCm9rKCAxLCAnRGVjb2RlZCBCYXNlNjQgc3VjY2Vz
c2Z1bGx5JyApOwo=

 view all matches for this distribution


Acme-CPANLists-Import-PerlDancerAdvent-2010

 view release on metacpan or  search on metacpan

lib/Acme/CPANLists/Import/PerlDancerAdvent/2010.pm  view on Meta::CPAN

package Acme::CPANLists::Import::PerlDancerAdvent::2010;

our $DATE = '2016-11-24'; # DATE
our $VERSION = '0.001'; # VERSION

our @Module_Lists = ({description=>"This list is generated by extracting module names mentioned in [http://advent.perldancer.org/2010/] (retrieved on 2016-11-24). Visit the URL for the full contents.",entries=>[{module=>"Dancer"},{module=>"Dancer::Pl...

1;
# ABSTRACT: Modules mentioned in PerlDancer Advent Calendar 2010

__END__

lib/Acme/CPANLists/Import/PerlDancerAdvent/2010.pm  view on Meta::CPAN


=item * L<Test::More>

=item * L<Catalyst::Plugin::CookiedSession>

=item * L<Crypt::CBC>

=item * L<Crypt::Rijndael>

=item * L<Dancer::Session>

 view all matches for this distribution


Acme-CPANModules-TextTable

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/TextTable.pm  view on Meta::CPAN


The above result presented as chart:

=begin html

<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAtAAAAH4CAMAAABUnipoAAAJJmlDQ1BpY2MAAEiJlZVnUJNZF8fv8zzphUASQodQQ5EqJYCUEFoo0quoQOidUEVsiLgCK4qINEWQRQEXXJUia0UUC4uCAhZ0gywCyrpxFVFBWXDfGZ33HT+8/5l7z2/+c+bec8/5cAEgiINlwct7YlK6wNvJjhkYFMwE3yiMn5...

=end html


Result formatted as table (split, part 2 of 5):

 view all matches for this distribution


Acme-CPANModulesBundle-Import-PerlDancerAdvent-2010

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/Import/PerlDancerAdvent/2010.pm  view on Meta::CPAN

                   { module => "Dancer::Request" },
                   { module => "Dancer::Test" },
                   { module => "Devel::Cover" },
                   { module => "Test::More" },
                   { module => "Catalyst::Plugin::CookiedSession" },
                   { module => "Crypt::CBC" },
                   { module => "Crypt::Rijndael" },
                   { module => "Dancer::Session" },
                   { module => "Dancer::Session::Cookie" },
                   { module => "Dancer::Session::Memcached" },
                   { module => "Plack::Middleware::Session::Cookie" },

lib/Acme/CPANModules/Import/PerlDancerAdvent/2010.pm  view on Meta::CPAN


=item * L<Test::More>

=item * L<Catalyst::Plugin::CookiedSession>

=item * L<Crypt::CBC>

=item * L<Crypt::Rijndael>

=item * L<Dancer::Session>

 view all matches for this distribution


Acme-DependOnEverything

 view release on metacpan or  search on metacpan

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use Crypt::Caesar;
use Crypt::Camellia;
use Crypt::Camellia_PP;
use Crypt::CAST;
use Crypt::CAST_PP;
use Crypt::CBC;
use Crypt::CBCeasy;
use Crypt::CCM;
use Crypt::CFB;
use Crypt::Chimera;
use Crypt::CipherSaber;
use Crypt::Cisco;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use Crypt::MatrixSSL::zip;
use Crypt::MCrypt;
use Crypt::Memfrob;
use Crypt::Mimetic;
use Crypt::Misty;
use Crypt::Mode::CBC::Easy;
use Crypt::MySQL;
use Crypt::NaCl::Sodium;
use Crypt::NamedKeys;
use Crypt::Nash;
use Crypt::Nettle;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use Crypt::Tea_JS;
use Crypt::TEA_PP;
use Crypt::TEA_XS;
use Crypt::Trifid;
use Crypt::TripleDES;
use Crypt::TripleDES::CBC;
use Crypt::Twofish;
use Crypt::Twofish_PP;
use Crypt::UF::Server;
use Crypt::UnixCrypt;
use Crypt::UnixCrypt_XS;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use Editpmgz;
use Egg::Model::Cache;
use Egg::Model::FsaveDate;
use Egg::Plugin::Authen::Captcha;
use Egg::Plugin::Cache::UA;
use Egg::Plugin::Crypt::CBC;
use Egg::Plugin::Log::Syslog;
use Egg::Plugin::LWP;
use Egg::Plugin::Net::Ping;
use Egg::Plugin::Net::Scan;
use Egg::Plugin::SessionKit;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use File::XDG;
use File::Zglob;
use Filter;
use Filter::Arguments;
use Filter::BoxString;
use Filter::CBC;
use Filter::Cleanup;
use Filter::CommaEquals;
use Filter::Crypto;
use Filter::Dockerfile;
use filtered::v;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use PerlIO::via::ANSIColor;
use PerlIO::via::as_is;
use PerlIO::via::Babelfish;
use PerlIO::via::Bastardize;
use PerlIO::via::Bzip;
use PerlIO::via::CBC;
use PerlIO::via::chop;
use PerlIO::via::csv;
use PerlIO::via::dynamic;
use PerlIO::via::escape_ansi;
use PerlIO::via::EscStatus;

 view all matches for this distribution


Acme-InputRecordSeparatorIsRegexp

 view release on metacpan or  search on metacpan

t/06-DATA.t  view on Meta::CPAN


done_testing();


__DATA__
0:AAA1:AAB2:AAC3:AAD4:AAE5:AAF6:AAG7:AAH8:AAI9:AAJ10:AAK11:AAL12:AAM13:AAN14:AAO15:AAP16:AAQ17:AAR18:AAS19:AAT20:AAU21:AAV22:AAW23:AAX24:AAY25:AAZ26:ABA27:ABB28:ABC29:ABD30:ABE31:ABF32:ABG33:ABH34:ABI35:ABJ36:ABK37:ABL38:ABM39:ABN40:ABO41:ABP42:ABQ43...

 view all matches for this distribution


Acme-MITHALDU-BleedingOpenGL

 view release on metacpan or  search on metacpan

BleedingOpenGL.pm  view on Meta::CPAN

   GL_VERTEX_ARRAY_RANGE_LENGTH_APPLE
   GL_VERTEX_ARRAY_STORAGE_HINT_APPLE
   GL_VERTEX_ARRAY_RANGE_POINTER_APPLE
   GL_STORAGE_CACHED_APPLE
   GL_STORAGE_SHARED_APPLE
   GL_YCBCR_422_APPLE
   GL_UNSIGNED_SHORT_8_8_APPLE
   GL_UNSIGNED_SHORT_8_8_REV_APPLE
   GL_RGB_S3TC
   GL_RGB4_S3TC
   GL_RGBA_S3TC

BleedingOpenGL.pm  view on Meta::CPAN

   GL_BLEND_EQUATION_RGB_EXT
   GL_BLEND_EQUATION_ALPHA_EXT
   GL_PACK_INVERT_MESA
   GL_UNSIGNED_SHORT_8_8_MESA
   GL_UNSIGNED_SHORT_8_8_REV_MESA
   GL_YCBCR_MESA
   GL_PIXEL_PACK_BUFFER_EXT
   GL_PIXEL_UNPACK_BUFFER_EXT
   GL_PIXEL_PACK_BUFFER_BINDING_EXT
   GL_PIXEL_UNPACK_BUFFER_BINDING_EXT
   GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV

 view all matches for this distribution


Acme-MetaSyntactic-Themes

 view release on metacpan or  search on metacpan

lib/Acme/MetaSyntactic/iata.pm  view on Meta::CPAN

BWP BWQ BWS BWT BWU BWW BWX BWY BXA BXB BXC BXD BXE BXF BXG BXH BXI BXJ
BXK BXL BXM BXN BXO BXP BXR BXS BXT BXU BXV BXW BXX BXY BXZ BYA BYB BYC
BYD BYF BYG BYH BYI BYJ BYK BYL BYM BYN BYO BYP BYQ BYR BYS BYT BYU BYV
BYW BYX BZA BZB BZC BZD BZE BZF BZG BZH BZI BZK BZL BZM BZN BZO BZP BZR
BZS BZT BZU BZV BZX BZY BZZ CAA CAB CAC CAD CAE CAF CAG CAH CAI CAJ CAK
CAL CAM CAN CAO CAP CAQ CAR CAS CAT CAU CAV CAW CAX CAY CAZ CBA CBB CBC
CBD CBE CBF CBG CBH CBI CBJ CBK CBL CBM CBN CBO CBP CBQ CBR CBS CBT CBV
CBW CBX CBY CBZ CCA CCB CCC CCD CCE CCF CCG CCH CCI CCJ CCK CCL CCM CCN
CCO CCP CCQ CCR CCS CCT CCU CCV CCW CCX CCY CCZ CDA CDB CDC CDD CDE CDF
CDG CDH CDI CDJ CDK CDL CDN CDO CDP CDQ CDR CDS CDT CDU CDV CDW CDY CEA
CEB CEC CED CEE CEF CEG CEH CEI CEJ CEK CEL CEM CEN CEO CEP CEQ CER CES

 view all matches for this distribution


Acme-RFC4824

 view release on metacpan or  search on metacpan

t/01-encode_decode.t  view on Meta::CPAN

# test that the last entry is the representation of 'R' (FEN)
is($sfss->ascii2art_map()->{'R'}, $ascii_art[scalar @ascii_art - 1], 'Last symbol is R (FEN)');

# test packet from RFC 4824 authors
my $test_packet2 = pack('H*', '1e1f202122232425262728292a2b2c2d2e2f3031323334353637');
my $ascii2 = 'QABAABOBPCACBCCCDCECFCGCHCICJCKCLCMCNCOCPDADBDCDDDEDFDGDHLPOMR';
my $test = $sfss->decode({
    FRAME => $ascii2,
});
ok($test_packet2 eq $test, 'Test packet from RFC4824 authors decoding');

 view all matches for this distribution


Activator

 view release on metacpan or  search on metacpan

lib/Activator.pm  view on Meta::CPAN

     Class::StrongSingleton
     Hash::Merge
     Time::HiRes
     Exception::Class::TryCatch
     Exception::Class::DBI
     Crypt::CBC
     Crypt::Blowfish
     MIME::Lite
     HTML::Entities
     Email::Send
     Template::Plugin::HTML::Strip

lib/Activator.pm  view on Meta::CPAN

     perl-Test-Exception \
     perl-Test-Pod \
     perl-Hash-Merge \
     perl-Time-HiRes \
     perl-Exception-Class-DBI \
     perl-Crypt-CBC \
     perl-Crypt-Blowfish \
     perl-MIME-Lite \
     perl-HTML-Entities \
     perl-Template-Plugin-HTML-Strip \

 view all matches for this distribution


Algorithm-IRCSRP2

 view release on metacpan or  search on metacpan

lib/Algorithm/IRCSRP2.pm  view on Meta::CPAN

    my $times = pack('L>', int(time()));

    # info = len(username) || username || timestamp
    my $infos = chr(length($who)) . $who . $times;

    # ctext = IV || AES-CBC(sessionkey, IV, "M" || info || plaintext)
    my $ctext = $self->cbc_encrypt(padto('M' . $infos . $msg, 16));

    # cmac = HM(mackey, ctext)
    my $cmac = hmac_sha256_128($self->mac_key, $ctext);

lib/Algorithm/IRCSRP2.pm  view on Meta::CPAN


=over

=item * B<am_i_dave> (ro, Bool) - Child class will set this.

=item * B<cbc_blocksize> (ro, Int) - CBC blocksize. Defaults to '16'.

=item * B<debug_cb> (rw, CodeRef) - Debug callback. Defaults to C<print()>

=item * B<error> (rw, Str) - If set, there was an error.

 view all matches for this distribution


Alien-FreeImage

 view release on metacpan or  search on metacpan

src/Source/FreeImage/PluginTIFF.cpp  view on Meta::CPAN

					// load 3 x 16-bit half as RGBF
					loadMethod = LoadAsHalfFloat;
				}
			}
			break;
		case PHOTOMETRIC_YCBCR:
		case PHOTOMETRIC_CIELAB:
		case PHOTOMETRIC_ICCLAB:
		case PHOTOMETRIC_ITULAB:
			loadMethod = LoadAsRBGA;
			break;

 view all matches for this distribution


( run in 1.248 second using v1.01-cache-2.11-cpan-3fabe0161c3 )