kyber1024.c File Reference

Kyber-1024 KEM. More...

#include "core/crypto.h"
#include "pqc/kyber1024.h"
#include <oqs/oqs.h>

Go to the source code of this file.

Macros

#define TRACE_LEVEL   CRYPTO_TRACE_LEVEL
 

Functions

error_t kyber1024GenerateKeyPair (const PrngAlgo *prngAlgo, void *prngContext, uint8_t *pk, uint8_t *sk)
 Key pair generation. More...
 
error_t kyber1024Encapsulate (const PrngAlgo *prngAlgo, void *prngContext, uint8_t *ct, uint8_t *ss, const uint8_t *pk)
 Encapsulation algorithm. More...
 
error_t kyber1024Decapsulate (uint8_t *ss, const uint8_t *ct, const uint8_t *sk)
 Decapsulation algorithm. More...
 

Variables

const KemAlgo kyber1024KemAlgo
 

Detailed Description

Kyber-1024 KEM.

License

SPDX-License-Identifier: GPL-2.0-or-later

Copyright (C) 2010-2024 Oryx Embedded SARL. All rights reserved.

This file is part of CycloneCRYPTO Open.

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

Author
Oryx Embedded SARL (www.oryx-embedded.com)
Version
2.4.0

Definition in file kyber1024.c.

Macro Definition Documentation

◆ TRACE_LEVEL

#define TRACE_LEVEL   CRYPTO_TRACE_LEVEL

Definition at line 32 of file kyber1024.c.

Function Documentation

◆ kyber1024Decapsulate()

error_t kyber1024Decapsulate ( uint8_t *  ss,
const uint8_t *  ct,
const uint8_t *  sk 
)

Decapsulation algorithm.

Parameters
[out]ssShared secret
[in]ctCiphertext
[in]skSecret key
Returns
Error code

Definition at line 111 of file kyber1024.c.

◆ kyber1024Encapsulate()

error_t kyber1024Encapsulate ( const PrngAlgo prngAlgo,
void *  prngContext,
uint8_t *  ct,
uint8_t *  ss,
const uint8_t *  pk 
)

Encapsulation algorithm.

Parameters
[in]prngAlgoPRNG algorithm
[in]prngContextPointer to the PRNG context
[out]ctCiphertext
[out]ssShared secret
[in]pkPublic key
Returns
Error code

Definition at line 90 of file kyber1024.c.

◆ kyber1024GenerateKeyPair()

error_t kyber1024GenerateKeyPair ( const PrngAlgo prngAlgo,
void *  prngContext,
uint8_t *  pk,
uint8_t *  sk 
)

Key pair generation.

Parameters
[in]prngAlgoPRNG algorithm
[in]prngContextPointer to the PRNG context
[out]pkPublic key
[out]skSecret key
Returns
Error code

Definition at line 67 of file kyber1024.c.

Variable Documentation

◆ kyber1024KemAlgo

const KemAlgo kyber1024KemAlgo
Initial value:
=
{
"Kyber-1024",
}
error_t(* KemAlgoGenerateKeyPair)(const PrngAlgo *prngAlgo, void *prngContext, uint8_t *pk, uint8_t *sk)
Definition: crypto.h:986
error_t(* KemAlgoEncapsulate)(const PrngAlgo *prngAlgo, void *prngContext, uint8_t *ct, uint8_t *ss, const uint8_t *pk)
Definition: crypto.h:989
error_t(* KemAlgoDecapsulate)(uint8_t *ss, const uint8_t *ct, const uint8_t *sk)
Definition: crypto.h:992
error_t kyber1024GenerateKeyPair(const PrngAlgo *prngAlgo, void *prngContext, uint8_t *pk, uint8_t *sk)
Key pair generation.
Definition: kyber1024.c:67
error_t kyber1024Encapsulate(const PrngAlgo *prngAlgo, void *prngContext, uint8_t *ct, uint8_t *ss, const uint8_t *pk)
Encapsulation algorithm.
Definition: kyber1024.c:90
error_t kyber1024Decapsulate(uint8_t *ss, const uint8_t *ct, const uint8_t *sk)
Decapsulation algorithm.
Definition: kyber1024.c:111
#define KYBER1024_SHARED_SECRET_LEN
Definition: kyber1024.h:44
#define KYBER1024_CIPHERTEXT_LEN
Definition: kyber1024.h:42
#define KYBER1024_SECRET_KEY_LEN
Definition: kyber1024.h:40
#define KYBER1024_PUBLIC_KEY_LEN
Definition: kyber1024.h:38

Definition at line 45 of file kyber1024.c.