crypto-tests.c revision b35f20cd8ecdc8308a3201e55752fb0443ec6ae4
/*
SSSD
Crypto tests
Author: Jakub Hrozek <jhrozek@redhat.com>
Copyright (C) Red Hat, Inc 2010
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include <popt.h>
#include <check.h>
/* interfaces under test */
#include "util/crypto/sss_crypto.h"
#include "util/crypto/nss/nss_util.h"
#ifdef HAVE_NSS
{
int ret;
ret = nspr_nss_init();
ret = nspr_nss_cleanup();
}
#endif
{
"12345678901234567", /* just above blocksize */
"", /* empty */
NULL}; /* sentinel */
int i;
int ret;
int expected;
#ifdef HAVE_NSS
#else
#endif
for (i=0; password[i]; i++) {
}
}
{
const char *message = "test message";
const char *keys[] = {
"short",
"proper6789012345678901234567890123456789012345678901234567890123",
"longlonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglong",
NULL };
const char *results[] = {
"\x2b\x27\x53\x07\x17\xd8\xc0\x8f\x97\x27\xdd\xb3\xec\x41\xd8\xa3\x94\x97\xaa\x35",
"\x37\xe7\x0a\x6f\x71\x0b\xa9\x93\x81\x53\x8f\x5c\x06\x83\x44\x2f\xc9\x41\xe3\xed",
"\xbd\x99\xa7\x7f\xfc\x5e\xde\x04\x32\x7f\x7b\x71\x4d\xc0\x3f\x51\x2d\x25\x01\x28",
NULL };
unsigned char out[SSS_SHA1_LENGTH];
int i;
#ifdef HAVE_NSS
#else
#endif
for (i = 0; keys[i]; i++) {
out);
}
}
Suite *crypto_suite(void)
{
/* Do some testing */
#ifdef HAVE_NSS
#endif
/* Add all test cases to the test suite */
suite_add_tcase(s, tc);
return s;
}
{
int opt;
int number_failed;
int debug = 0;
struct poptOption long_options[] = {
};
/* Set debug level to invalid value so we can deside if -d 0 was used. */
switch(opt) {
default:
return 1;
}
}
Suite *s = crypto_suite();
}