Crypt::Password::Util is a crypt password utilities.
Its crypt($str) works like Perl's crypt(), but automatically choose the
appropriate crypt type and random salt. Will first choose SSHA512 with 64-bit
random salt. If not supported by system, fall back to MD5-CRYPT with 32-bit
random salt. If that is not supported, fall back to CRYPT.
Its crypt_type($str) returns crypt type, or undef if $str does not look like a
crypted password. Currently known types: CRYPT (traditional DES crypt),
MD5-CRYPT (including Apache variant), SSHA256 (salted SHA256), SSHA512 (salted
SHA512), and PLAIN-MD5.
See also Authen::Passphrase which recognizes more encodings (but currently not
SSHA256 and SSHA512).
WWW: http://search.cpan.org/dist/Crypt-Password-Util/
PR: ports/182326
Submitted by: Henk van Oers <hvo.pm@xs4all.nl>
UUID::Random::Patch::UseMRS makes UUID::Random use rand() from
Math::Random::Secure instead of the default rand() that comes with Perl. It is
useful for creating cryptographically secure UUID's. On the other hand, as a
note, this makes generate() around 20 times slower.
After you use this module, use UUID::Random as usual.
WWW: http://search.cpan.org/dist/UUID-Random-Patch-UseMRS/
PR: ports/182322
Submitted by: Henk van Oers <hvo.pm@xs4all.nl>
UUID::Random generates random uuid strings. It does not satisfy any of the
points listed in RFC 4122 but the default format.
If you need RFC compliant UUID strings have a look at Data::UUID.
WWW: http://search.cpan.org/dist/UUID-Random/
PR: ports/182321
Submitted by: Henk van Oers <hvo.pm@xs4all.nl>
on December 1st, 2013.
Discussed on: emulation@ (2013-10-06)
Approved by: maintainer timeout (emulators/linux-pe*), private mail
Approved by: maintainer (games/HeroesOfMightAndMagic), via IRC
Changes:
* Compiler and runtime library have been improved to work on Sparc
64-bit machines under OpenBSD. Thanks go to Brian Callahan, for
his support and for providing access to his Sparc 64-bit machine.
* The FAQ explanation concerning portability has been improved.
* The new library cc_conf.s7i has been added. This library manages
configuration values for C compiler and runtime.
* The compiler has been improved to use the library cc_conf.s7i.
* The chapter about the defines used in version.h has been improved
in src/read_me.txt.
* The type rtlGenerictype has been renamed to generictype in the
files of the runtime library. Now compiler and runtime library
both use the name generictype.
* The function checkForLimitedStringLiteralLength, a check for
trigraph sequences and checks for the presence of getrlimit()
and siglongjmp() have been added to chkccomp.c.
* The function setupStack has been added to cmd_rtl.c. This function
tries to raise the stack limit to STACK_SIZE.
* Usages of USE_SIGSETJMP have been renamed to HAS_SIGSETJMP.
* The table key_code has been improved in kbd_inf.c and kbd_poll.c.
Now the erase char of the terminal interface (VERASE) is always
returned as backspace (KEY_BS respectively '\8\'). This improves
the behavior under Cygwin.
* The function utf8_init has been changed in kbd_inf.c and
kbd_poll.c to assume UTF-8 mode when no locale environment
variable is set.
* The function msgDigest in msgdigest.s7i has been changed to use
in-parameters.
* The function configValue has been moved from osfiles.s7i to
cc_conf.s7i.
* The macro REALLOC_STRI_SIZE_SMALLER has been added to heaputl.h.
Several usages of REALLOC_STRI_SIZE_OK in the runtime library have
been changed to usages of REALLOC_STRI_SIZE_SMALLER.
* The compiler has been improved to initialize boolean and
enumeration elements of structs with the values value.boolvalue
respectively value.enumvalue. This is necessary to work correctly
on big-endian systems.
* Interpreter and compiler have been improved to support the actions
ACT_EQ and ACT_NE.
- Use options helpers to simplify the Makefile
- Remove SQLITE2 option as it was dropped from powerdns on 2012
PR: ports/182902
Submitted by: Ralf van der Enden <tremere@cainites.net> (maintainer) [1]
- Add LICENSE (GPLv2)
- Use new syntax in LIB_DEPENDS
- Add support for staging
- Add option DOCS
- Fix build with any compiler
- Fix WWW line and remove Author from pkg-descr