diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-02-05 18:55:21 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-02-05 18:55:21 +0000 |
commit | 9c535909fd3c529e53dc0c8089b2957f873851d4 (patch) | |
tree | 19d4970cb947a75bea2c5d12945a31a4f59bc4e4 /sys/crypto/rijndael.h | |
parent | c3418369b9c3df40b150ce4e974e91d6d0246a1e (diff) |
expose two more functions
Diffstat (limited to 'sys/crypto/rijndael.h')
-rw-r--r-- | sys/crypto/rijndael.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/crypto/rijndael.h b/sys/crypto/rijndael.h index 6cfb3813dad..d1f3f4b57f4 100644 --- a/sys/crypto/rijndael.h +++ b/sys/crypto/rijndael.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rijndael.h,v 1.8 2003/12/26 10:04:49 markus Exp $ */ +/* $OpenBSD: rijndael.h,v 1.9 2004/02/05 18:55:20 deraadt Exp $ */ /** * rijndael-alg-fst.h @@ -49,4 +49,7 @@ void rijndael_set_key_enc_only(rijndael_ctx *, u_char *, int); void rijndael_decrypt(rijndael_ctx *, u_char *, u_char *); void rijndael_encrypt(rijndael_ctx *, u_char *, u_char *); +int rijndaelKeySetupEnc(unsigned int [], const unsigned char [], int); +int rijndaelKeySetupDec(unsigned int [], const unsigned char [], int); + #endif /* __RIJNDAEL_H */ |