Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../data-stud/../../usr/./include/crypt.h
Real path: /usr/include/crypt.h
Zurück
/* * Copyright (c) 1988, 2016, Oracle and/or its affiliates. All rights reserved. */ /* Copyright (c) 1988 AT&T */ /* All Rights Reserved */ #ifndef _CRYPT_H #define _CRYPT_H #include <pwd.h> #ifdef __cplusplus extern "C" { #endif /* Password and file encryption functions */ #define CRYPT_MAXCIPHERTEXTLEN 512 extern char *crypt(const char *, const char *); extern char *crypt_gensalt(const char *, const struct passwd *); extern char *crypt_genhash_impl(char *, size_t, const char *, const char *, const char **); extern char *crypt_gensalt_impl(char *, size_t, const char *, const struct passwd *, const char **); extern char *des_crypt(const char *, const char *); extern void des_encrypt(char *, int); extern void des_setkey(const char *); extern void encrypt(char *, int); #ifdef __cplusplus } #endif #endif /* _CRYPT_H */