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
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
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
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
view release on metacpan or search on metacpan
#!perl
use Acme::Base64;
dXNlIFRlc3Q6Ok1vcmUgdGVzdHMgPT4gMTsKCm9rKCAxLCAnRGVjb2RlZCBCYXNlNjQgc3VjY2Vz
c2Z1bGx5JyApOwo=
view all matches for this distribution
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
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
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
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
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
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
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
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
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
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
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
view release on metacpan or search on metacpan
src/subversion/subversion/libsvn_subr/crypto.c view on Meta::CPAN
/* Initialize the passphrase. */
apr_err = apr_crypto_passphrase(&key, &iv_len,
master->data, master->len,
salt_vector, SALT_LEN,
APR_KEY_AES_256, APR_MODE_CBC,
FALSE /* doPad */, NUM_ITERATIONS,
ctx->crypto,
scratch_pool);
if (apr_err != APR_SUCCESS)
return svn_error_trace(crypto_error_create(
src/subversion/subversion/libsvn_subr/crypto.c view on Meta::CPAN
/* Initialize the passphrase. */
apr_err = apr_crypto_passphrase(&key, &iv_len,
master->data, master->len,
(unsigned char *)salt->data, salt->len,
APR_KEY_AES_256, APR_MODE_CBC,
FALSE /* doPad */, NUM_ITERATIONS,
ctx->crypto, scratch_pool);
if (apr_err != APR_SUCCESS)
return svn_error_trace(crypto_error_create(
ctx, apr_err,
src/subversion/subversion/libsvn_subr/crypto.c view on Meta::CPAN
/* Initialize the passphrase. */
apr_err = apr_crypto_passphrase(&key, &iv_len,
master->data, master->len,
salt_vector, SALT_LEN,
APR_KEY_AES_256, APR_MODE_CBC,
FALSE /* doPad */, NUM_ITERATIONS,
ctx->crypto,
scratch_pool);
if (apr_err != APR_SUCCESS)
return svn_error_trace(crypto_error_create(
src/subversion/subversion/libsvn_subr/crypto.c view on Meta::CPAN
/* Initialize the passphrase. */
apr_err = apr_crypto_passphrase(&key, &iv_len,
master->data, master->len,
(unsigned char *)salt->data, salt->len,
APR_KEY_AES_256, APR_MODE_CBC,
FALSE /* doPad */, NUM_ITERATIONS,
ctx->crypto, scratch_pool);
if (apr_err != APR_SUCCESS)
return svn_error_trace(crypto_error_create(
ctx, apr_err,
view all matches for this distribution
view release on metacpan or search on metacpan
src/win32/include/winapi/winuser.h view on Meta::CPAN
#define GCL_HBRBACKGROUND (-10)
#define GCL_HCURSOR (-12)
#define GCL_HICON (-14)
#define GCL_HMODULE (-16)
#define GCL_CBWNDEXTRA (-18)
#define GCL_CBCLSEXTRA (-20)
#define GCL_WNDPROC (-24)
#define GCL_STYLE (-26)
#define GCW_ATOM (-32)
#define GCL_HICONSM (-34)
src/win32/include/winapi/winuser.h view on Meta::CPAN
#define WM_DRAWCLIPBOARD 0x0308
#define WM_PAINTCLIPBOARD 0x0309
#define WM_VSCROLLCLIPBOARD 0x030A
#define WM_SIZECLIPBOARD 0x030B
#define WM_ASKCBFORMATNAME 0x030C
#define WM_CHANGECBCHAIN 0x030D
#define WM_HSCROLLCLIPBOARD 0x030E
#define WM_QUERYNEWPALETTE 0x030F
#define WM_PALETTEISCHANGING 0x0310
#define WM_PALETTECHANGED 0x0311
#define WM_HOTKEY 0x0312
view all matches for this distribution
view release on metacpan or search on metacpan
src/win32/include/winapi/winuser.h view on Meta::CPAN
#define GCL_HBRBACKGROUND (-10)
#define GCL_HCURSOR (-12)
#define GCL_HICON (-14)
#define GCL_HMODULE (-16)
#define GCL_CBWNDEXTRA (-18)
#define GCL_CBCLSEXTRA (-20)
#define GCL_WNDPROC (-24)
#define GCL_STYLE (-26)
#define GCW_ATOM (-32)
#define GCL_HICONSM (-34)
src/win32/include/winapi/winuser.h view on Meta::CPAN
#define WM_DRAWCLIPBOARD 0x0308
#define WM_PAINTCLIPBOARD 0x0309
#define WM_VSCROLLCLIPBOARD 0x030A
#define WM_SIZECLIPBOARD 0x030B
#define WM_ASKCBFORMATNAME 0x030C
#define WM_CHANGECBCHAIN 0x030D
#define WM_HSCROLLCLIPBOARD 0x030E
#define WM_QUERYNEWPALETTE 0x030F
#define WM_PALETTEISCHANGING 0x0310
#define WM_PALETTECHANGED 0x0311
#define WM_HOTKEY 0x0312
view all matches for this distribution
view release on metacpan or search on metacpan
share/resources/css/theme-gray/combo.css view on Meta::CPAN
.x-combo-list-hd {
font:bold 11px tahoma, arial, helvetica, sans-serif;
color:#333;
background-image: url(../images/default/layout/panel-title-light-bg.gif);
border-bottom-color:#BCBCBC;
}
.x-resizable-pinned .x-combo-list-inner {
border-bottom-color:#BEBEBE;
}
share/resources/css/theme-gray/combo.css view on Meta::CPAN
border-color:#777 !important;
background-color:#f0f0f0;
}
.x-combo-list .x-toolbar {
border-top-color:#BCBCBC;
}
.x-combo-list-small {
font:normal 11px tahoma, arial, helvetica, sans-serif;
}
view all matches for this distribution
view release on metacpan or search on metacpan
libsecp256k1/src/tests.c view on Meta::CPAN
if (i == 19999) {
/* expected result after 19999 iterations */
secp256k1_gej rp = SECP256K1_GEJ_CONST(
0xD6E96687, 0xF9B10D09, 0x2A6F3543, 0x9D86CEBE,
0xA4535D0D, 0x409F5358, 0x6440BD74, 0xB933E830,
0xB95CBCA2, 0xC77DA786, 0x539BE8FD, 0x53354D2D,
0x3B4F566A, 0xE6580454, 0x07ED6015, 0xEE1B2A88
);
CHECK(secp256k1_gej_eq_var(&rp, &x));
}
}
view all matches for this distribution
view release on metacpan or search on metacpan
t/pkcs12-info-arbitrary-bag-attributes.t view on Meta::CPAN
BEGIN { use_ok('Crypt::OpenSSL::PKCS12') };
my $openssl_output =<< 'OPENSSL_END';
MAC: sha1, Iteration 100000
MAC length: 20, salt length: 20
PKCS7 Data
Shrouded Keybag: PBES2, PBKDF2, AES-256-CBC, Iteration 10000, PRF hmacWithSHA256
Bag Attributes
friendlyName: wile e coyote
localKeyID: 54 69 6D 65 20 31 36 35 39 38 30 32 39 34 31 36 33 32
Key Attributes: <No Attributes>
-----BEGIN PRIVATE KEY-----
t/pkcs12-info-arbitrary-bag-attributes.t view on Meta::CPAN
Ueg7KSbfS3UQVJITCHQuTS2vjZWsNOMHQ7RxfJUCgYEAjyu2b6Lzae8ZDUSHbeBP
faZHOjkkUK2W8Ee3xGNBAmArnJp+yx0BLa6ZD2xWX3NAeGtRJK/l/lgYsb7/kAvi
iS81NOQKkH8bC2SfqRkrlUjgGnYz2DVhQrbHw/BuiaIffqeY19WPSjyH1f9GPgog
NnkSzXchhFTmhMqqxQ1wlPc=
-----END PRIVATE KEY-----
PKCS7 Encrypted data: PBES2, PBKDF2, AES-256-CBC, Iteration 10000, PRF hmacWithSHA256
Certificate bag
Bag Attributes
friendlyName: ssl.com ev root certification authority rsa r2
2.16.840.1.113894.746875.1.1: <Unsupported tag 6>
subject=C = US, ST = Texas, L = Houston, O = SSL Corporation, CN = SSL.com EV Root Certification Authority RSA R2
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Crypt/RSA.pm view on Meta::CPAN
L<Crypt::RSA::Primitives>,
L<Crypt::RSA::DataFormat>,
L<Crypt::RSA::Errorhandler>,
L<Crypt::RSA::Debug>,
L<Crypt::CBC>,
L<Crypt::Blowfish>,
L<Tie::EncryptedHash>,
L<Convert::ASCII::Armour>,
L<Class::Loader>,
L<Math::Prime::Util>.
view all matches for this distribution
view release on metacpan or search on metacpan
t/test-data/to-split/29.xml view on Meta::CPAN
<semantic_unit><named_entity><form>Google Browser</form><named_entity_type>soft</named_entity_type></named_entity></semantic_unit>
</semantic_unit_level>
</linguisticAnalysis>
</documentRecord>
<documentRecord id="3DAB2F05CBCFBD7765C7E71C63E6FFE8" xmlns="http://alvis.info/enriched/">
<acquisition>
<acquisitionData>
<modifiedDate>1145563212583</modifiedDate>
<httpServer>Apache/2.0</httpServer>
<urls>
view all matches for this distribution