Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/blame/commit/80a8f04d2f1ff277364801986a68b15e351173f2/thirdparty/openssl/openssl-1.0.0d/crypto/des/DES.pm You should set ROOT_URL correctly, otherwise the web may not work correctly.
новые иконки в OpenBoard

20 lines
423 B

package DES;
require Exporter;
require DynaLoader;
@ISA = qw(Exporter DynaLoader);
# Items to export into callers namespace by default
# (move infrequently used names to @EXPORT_OK below)
@EXPORT = qw(
);
# Other items we are prepared to export if requested
@EXPORT_OK = qw(
crypt
);
# Preloaded methods go here. Autoload methods go after __END__, and are
# processed by the autosplit program.
bootstrap DES;
1;
__END__