Webskipper
Grünschnabel
Hallo,
wenn ich folgenden Code kompiliere:
#include <stdio.h>
#include <stdlib.h>
#include <openssl/rc4.h>
int main(int argc, char *argv[])
{
RC4_KEY *key;
RC4_set_key(key, 4, "test");
return 1;
}
und dann das Programm ausführe, kommt immer ein "Segmentation fault".
Hat jemand eine Idee, warum?
Siehe auch http://www.openssl.org/docs/crypto/rc4.html#
Dank und Gruß
Webskipper
wenn ich folgenden Code kompiliere:
#include <stdio.h>
#include <stdlib.h>
#include <openssl/rc4.h>
int main(int argc, char *argv[])
{
RC4_KEY *key;
RC4_set_key(key, 4, "test");
return 1;
}
und dann das Programm ausführe, kommt immer ein "Segmentation fault".
Hat jemand eine Idee, warum?
Siehe auch http://www.openssl.org/docs/crypto/rc4.html#
Dank und Gruß
Webskipper