Revision ce3d90a87776053ec367c0eb083d389e9979c7e9 authored by Linus Torvalds on 21 October 2022, 19:29:52 UTC, committed by Linus Torvalds on 21 October 2022, 19:29:52 UTC
Pull tracing tool update from Steven Rostedt:

 - Make dot2c generate monitor's automata definition static

* tag 'trace-tools-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace:
  rv/dot2c: Make automaton definition static
2 parent s 4f1e0c1 + 21a1994
Raw File
chacha-s390.h
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * s390 ChaCha stream cipher.
 *
 * Copyright IBM Corp. 2021
 */

#ifndef _CHACHA_S390_H
#define _CHACHA_S390_H

void chacha20_vx(u8 *out, const u8 *inp, size_t len, const u32 *key,
		 const u32 *counter);

#endif /* _CHACHA_S390_H */
back to top