blob: d1257f20a44c27944a7a965c7a6d47641bc19826 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass1acab962015-06-23 15:39:07 -06002/*
3 * (C) Copyright 2015 Google, Inc
4 *
5 * (C) Copyright 2008-2014 Rockchip Electronics
Simon Glass1acab962015-06-23 15:39:07 -06006 */
7
8#ifndef __RC4_H
9#define __RC4_H
10
11/**
12 * rc4_encode() - encode a buf with the RC4 cipher
13 *
14 * @buf: Buffer to encode (it is overwrite in the process
15 * @len: Length of buffer in bytes
16 * @key: 16-byte key to use
17 */
John Keeping93a6e602022-11-18 16:13:17 +000018void rc4_encode(unsigned char *buf, unsigned int len, const unsigned char key[16]);
Simon Glass1acab962015-06-23 15:39:07 -060019
20#endif