Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Linux/include/crypto/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 1 kB image not shown  

Quelle  chacha20poly1305.h   Sprache: C

 
/* SPDX-License-Identifier: GPL-2.0 OR MIT */
/*
 * Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
 */


#ifndef __CHACHA20POLY1305_H
#define __CHACHA20POLY1305_H

#include <linux/types.h>
#include <linux/scatterlist.h>

enum chacha20poly1305_lengths {
 XCHACHA20POLY1305_NONCE_SIZE = 24,
 CHACHA20POLY1305_KEY_SIZE = 32,
 CHACHA20POLY1305_AUTHTAG_SIZE = 16
};

void chacha20poly1305_encrypt(u8 *dst, const u8 *src, const size_t src_len,
         const u8 *ad, const size_t ad_len,
         const u64 nonce,
         const u8 key[CHACHA20POLY1305_KEY_SIZE]);

bool __must_check
chacha20poly1305_decrypt(u8 *dst, const u8 *src, const size_t src_len,
    const u8 *ad, const size_t ad_len, const u64 nonce,
    const u8 key[CHACHA20POLY1305_KEY_SIZE]);

void xchacha20poly1305_encrypt(u8 *dst, const u8 *src, const size_t src_len,
          const u8 *ad, const size_t ad_len,
          const u8 nonce[XCHACHA20POLY1305_NONCE_SIZE],
          const u8 key[CHACHA20POLY1305_KEY_SIZE]);

bool __must_check xchacha20poly1305_decrypt(
 u8 *dst, const u8 *src, const size_t src_len, const u8 *ad,
 const size_t ad_len, const u8 nonce[XCHACHA20POLY1305_NONCE_SIZE],
 const u8 key[CHACHA20POLY1305_KEY_SIZE]);

bool chacha20poly1305_encrypt_sg_inplace(struct scatterlist *src, size_t src_len,
      const u8 *ad, const size_t ad_len,
      const u64 nonce,
      const u8 key[CHACHA20POLY1305_KEY_SIZE]);

bool chacha20poly1305_decrypt_sg_inplace(struct scatterlist *src, size_t src_len,
      const u8 *ad, const size_t ad_len,
      const u64 nonce,
      const u8 key[CHACHA20POLY1305_KEY_SIZE]);

bool chacha20poly1305_selftest(void);

#endif /* __CHACHA20POLY1305_H */

Messung V0.5
C=93 H=96 G=94

¤ Dauer der Verarbeitung: 0.14 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.