summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/cipher.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* make ssh -Wshadow clean, no functional changesavsm2004-06-211-9/+9
| | | | markus@ ok
* rename acss@opebsd.org to acss@openssh.orghshoexer2004-01-231-2/+2
| | | | ok deraadt@
* enable acss for sshhshoexer2004-01-231-3/+4
| | | | ok deraadt@ markus@
* constify. ok markus@ & djm@jakob2003-11-101-6/+6
|
* experimental support for aes-ctr modes frommarkus2003-05-171-1/+12
| | | | | http://www.ietf.org/internet-drafts/draft-ietf-secsh-newmodes-00.txt ok djm@
* split out custom EVP ciphersmarkus2003-05-151-301/+6
|
* hide cipher details; ok djm@markus2003-04-121-53/+50
|
* debug->debug2, unify debug messagesmarkus2002-11-211-2/+2
|
* EVP_CIPH_CUSTOM_IV for our own rijndaelmarkus2002-07-121-2/+2
|
* KNFderaadt2002-06-231-1/+13
|
* make the monitor sync the transfer ssh1 session key;markus2002-06-191-30/+7
| | | | | transfer keycontext only for RC4 (this is still depends on EVP implementation details and is broken).
* __FUNCTION__ -> __func__markus2002-06-041-13/+13
|
* use rijndael/aes from libcrypto (openssl >= 0.9.7) instead ofmarkus2002-05-301-5/+23
| | | | our own implementation. allow use of AES hardware via libcrypto, ok deraadt@
* fix warnings (openssl 0.9.7 requires const)markus2002-05-161-8/+8
|
* re-add rijndael-cbc@lysator.liu.se for MacSSH; ash@lab.poc.netmarkus2002-04-031-3/+5
|
* KNF whitespacemarkus2002-03-191-6/+6
|
* export/import cipher states; needed by ssh-privsepmarkus2002-03-181-1/+174
|
* switch to EVP, ok djm@ deraadt@markus2002-02-181-370/+313
|
* hide some more implementation details of cipher.[ch] and prepares for movemarkus2002-02-141-11/+36
| | | | to EVP, ok deraadt@
* remove "rijndael-*", just use "aes-" since this how rijndael is calledmarkus2002-01-211-17/+1
| | | | in the drafts; ok stevesk@
* unneeded cast cleanup; ok markus@stevesk2002-01-181-2/+2
|
* basic KNF done while i was looking for something elsederaadt2001-12-191-6/+6
|
* switch to the optimised AES reference code frommarkus2001-08-231-30/+29
| | | | http://www.esat.kuleuven.ac.be/~rijmen/rijndael/rijndael-fst-3.0.zip
* update copyright for 2001markus2001-06-251-2/+2
|
* more strict prototypes. raise warning level in Makefile.inc. markus ok'editojun2001-06-231-32/+31
| | | | TODO; cleanup headers
* simpler 3des for ssh1markus2001-05-281-19/+14
|
* unexpand and remove end-of-line whitespace; ok markus@stevesk2001-02-041-4/+4
|
* split ssh.h and try to cleanup the #include mess. remove unnecessary #includes.markus2001-01-211-2/+3
| | | | rename util.[ch] -> misc.[ch]
* replace 'unsigned bla' with 'u_bla' everywhere. also, replace 'char unsigned'markus2000-12-191-7/+7
| | | | with u_char.
* undo rijndael changesmarkus2000-12-091-36/+31
|
* new rijndael implementation. fixes endian bugsmarkus2000-12-061-31/+36
|
* des_cbc_encrypt -> des_ncbc_encrypt since it already updates the IVmarkus2000-11-291-18/+7
|
* non-alignment dependent swap_bytes(); from simonb@wasabisystems.com/netbsdmarkus2000-10-231-23/+16
|
* debug3markus2000-10-141-3/+3
|
* rijndael/aes supportmarkus2000-10-131-2/+98
|
* enable DES in SSH-1 clients onlymarkus2000-10-121-9/+16
|
* remove DESmarkus2000-10-111-5/+1
|
* new cipher frameworkmarkus2000-10-111-310/+296
|
* a few more comments about it being ARC4 not RC4deraadt2000-09-121-2/+2
|
* cleanup copyright notices on all files. I have attempted to be accurate withderaadt2000-09-071-6/+29
| | | | | | | the details. everything is now under Tatu's licence (which I copied from his readme), and/or the core-sdi bsd-ish thing for deattack, or various openbsd developers under a 2-term bsd licence. We're not changing any rules, just being accurate.
* strtok() --> strsep(). (niels@ ok)ho2000-07-101-4/+5
|
* OpenBSD tagmarkus2000-06-201-1/+1
|
* check strtok() != NULL; ok niels@markus2000-05-221-2/+4
|
* whitespace cleanupmarkus2000-04-141-17/+17
|
* #include <ssl/foo.h> -> <openssh/foo.h>markus2000-04-121-2/+2
|
* add Cipher and Protocol options to ssh/sshd, e.g.:markus2000-04-121-4/+30
| | | | ssh -o 'Protocol 1,2' if you prefer proto 1, ssh -o 'Ciphers arcfour,3des-cbc'
* comment typoderaadt2000-04-121-2/+2
|
* remove unused argument, split cipher_mask()markus2000-04-041-7/+17
|
* support ssh2 ciphersmarkus2000-03-281-2/+121
|
* remove unused cipher_attack_detected codemarkus2000-03-221-15/+1
|