Plan 9 from Bell Labs’s /usr/web/sources/plan9/sys/src/cmd/ssh1/cipherblowfish.c

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


#include "ssh.h"

struct CipherState
{
	BFstate enc;
	BFstate dec;
};

static CipherState*
initblowfish(Conn *c, int)
{
	CipherState *cs;

	cs = emalloc(sizeof(CipherState));
	setupBFstate(&cs->enc, c->sesskey, SESSKEYLEN, nil);
	setupBFstate(&cs->dec, c->sesskey, SESSKEYLEN, nil);
	return cs;
}

static void
encryptblowfish(CipherState *cs, uchar *buf, int nbuf)
{
	bfCBCencrypt(buf, nbuf, &cs->enc);
}

static void
decryptblowfish(CipherState *cs, uchar *buf, int nbuf)
{
	bfCBCdecrypt(buf, nbuf, &cs->dec);
}

Cipher cipherblowfish = 
{
	SSH_CIPHER_BLOWFISH,
	"blowfish",
	initblowfish,
	encryptblowfish,
	decryptblowfish,
};


Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.