forked from openssh/openssh-portable
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- [email protected] 2002/03/18 17:13:15
[cipher.c cipher.h] export/import cipher states; needed by ssh-privsep
- Loading branch information
Showing
3 changed files
with
186 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,6 +44,9 @@ | |
- [email protected] 2002/03/18 03:41:08 | ||
[auth.c session.c] | ||
move auth_approval into getpwnamallow with help from millert@ | ||
- [email protected] 2002/03/18 17:13:15 | ||
[cipher.c cipher.h] | ||
export/import cipher states; needed by ssh-privsep | ||
|
||
20020317 | ||
- (tim) [configure.ac] Assume path given with --with-pid-dir=PATH is wanted, | ||
|
@@ -7890,4 +7893,4 @@ | |
- Wrote replacements for strlcpy and mkdtemp | ||
- Released 1.0pre1 | ||
|
||
$Id: ChangeLog,v 1.1937 2002/03/22 01:35:47 mouring Exp $ | ||
$Id: ChangeLog,v 1.1938 2002/03/22 01:39:44 mouring Exp $ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/* $OpenBSD: cipher.h,v 1.32 2002/03/04 17:27:39 stevesk Exp $ */ | ||
/* $OpenBSD: cipher.h,v 1.33 2002/03/18 17:13:15 markus Exp $ */ | ||
|
||
/* | ||
* Author: Tatu Ylonen <[email protected]> | ||
|
@@ -81,4 +81,11 @@ void cipher_cleanup(CipherContext *); | |
void cipher_set_key_string(CipherContext *, Cipher *, const char *, int); | ||
u_int cipher_blocksize(Cipher *); | ||
u_int cipher_keylen(Cipher *); | ||
|
||
u_int cipher_get_number(Cipher *); | ||
void cipher_get_keyiv(CipherContext *, u_char *, u_int); | ||
void cipher_set_keyiv(CipherContext *, u_char *); | ||
int cipher_get_keyiv_len(CipherContext *); | ||
int cipher_get_keycontext(CipherContext *, u_char *); | ||
void cipher_set_keycontext(CipherContext *, u_char *); | ||
#endif /* CIPHER_H */ |