Random Notes


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Complex Event Processing RSS News Random Notes
# 1  
Old 11-11-2008
Random Notes

2008-11-11T07:20:00.003-05:00


Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Need to generate a file with random data. /dev/[u]random doesn't exist.

Need to use dd to generate a large file from a sample file of random data. This is because I don't have /dev/urandom. I create a named pipe then: dd if=mynamed.fifo do=myfile.fifo bs=1024 count=1024 but when I cat a file to the fifo that's 1024 random bytes: cat randomfile.txt >... (7 Replies)
Discussion started by: Devyn
7 Replies

2. Ubuntu

expect script for random password and random commands

Hi I am new to expect. Please if any one can help on my issue its really appreciable. here is my issue: I want expect script for random passwords and random commands generation. please can anyone help me? Many Thanks in advance (0 Replies)
Discussion started by: vanid
0 Replies

3. UNIX for Dummies Questions & Answers

dec-notes ?

After running a port-scan (nmap) on my system (Linux Slackware 8.0) I got expected results except for one line: Port State Service 3333/tcp open dec-notes What is "dec-notes" and what is it used for ? Any security risks in having this service open ? / JP :) (6 Replies)
Discussion started by: J.P
6 Replies
Login or Register to Ask a Question
Crypt::Random::Source::Base::Handle(3pm)		User Contributed Perl Documentation		  Crypt::Random::Source::Base::Handle(3pm)

NAME
Crypt::Random::Source::Base::Handle - IO::Handle based random data sources SYNOPSIS
use Moose; extends qw(Crypt::Random::Source::Base::Handle); sub open_handle { # invoked as needed } # this class can also be used directly Crypt::Random::Source::Base::Handle->new( handle => $file_handle ); # it supports some standard methods: $p->blocking(0); $p->read( my $buf, $n ); # no error handling here DESCRIPTION
This is a concrete base class for all IO::Handle based random data sources. It implements error handling ATTRIBUTES
handle An IO::Handle or file handle to read from. blocking This is actually handled by "handle", and is documented in IO::Handle. allow_under_read Whether or not under reading is considered an error. Defaults to false. reread_attempts The number of attempts to make at rereading if the handle did not provide enough bytes on the first attempt. Defaults to 1. Only used if "allow_under_read" is enabled. METHODS
get See "get" in Crypt::Random::Source::Base. When "blocking" or "allow_under_read" are set to a true value this method may return fewer bytes than requested. read This delegates directly to "handle". It DOES NOT provide the same validation as "get" would have, so no checking for underreads is done. close Close the handle and clear it. _read "$self->handle->read" but with additional error checking and different calling conventions. _read_too_short Called by "_read" when not enough data was read from the handle. Normally it will either die with an error or attempt to reread. When "allow_under_read" is true it will just return the partial buffer. open_handle Abstract method, should return an IO::Handle to use. AUTHOR
Yuval Kogman <nothingmuch@woobling.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Yuval Kogman. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2011-01-05 Crypt::Random::Source::Base::Handle(3pm)