Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121142991
encrypt.c
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Jul 8, 22:19
Size
1 KB
Mime Type
text/x-c
Expires
Thu, Jul 10, 22:19 (2 d)
Engine
blob
Format
Raw Data
Handle
27264410
Attached To
R10499 Energy Analysis of Lightweight AEAD Circuit
encrypt.c
View Options
/**
* The implementation of the CAESAR encrypt/decrypt interface
*/
#include "api.h"
#include "paef.h"
#include "crypto_aead.h"
/**
* The CAESAR encrypt interface
* @param c A pointer to buffer for CT
* @param clen Ciphertext length in Bytes
* @param k The secret key
* @param m A pointer to the PT
* @param mlen Plaintext length in Bytes
* @param ad A pointer to associated data
* @param adlen Length of associated data in Bytes
* @param npub A pointer to the nonce
* @param nsec A pointer to secret message number (ignored)
*/
int
crypto_aead_encrypt
(
unsigned
char
*
c
,
unsigned
long
long
*
clen
,
const
unsigned
char
*
m
,
unsigned
long
long
mlen
,
const
unsigned
char
*
ad
,
unsigned
long
long
adlen
,
const
unsigned
char
*
nsec
,
const
unsigned
char
*
npub
,
const
unsigned
char
*
k
)
{
(
void
)
nsec
;
int
res
=
paef_encrypt
(
c
,
m
,
mlen
,
ad
,
adlen
,
npub
,
k
);
if
(
res
!=
-
1
)
*
clen
=
mlen
+
CRYPTO_ABYTES
;
return
res
;
}
/**
* The CAESAR decrypt interface
* @param c A pointer to buffer for CT
* @param clen Ciphertext length in Bytes
* @param k The secret key
* @param m A pointer to the PT
* @param mlen Plaintext length in Bytes
* @param ad A pointer to associated data
* @param adlen Length of associated data in Bytes
* @param npub A pointer to the nonce
* @param nsec A pointer to secret message number (ignored)
*/
int
crypto_aead_decrypt
(
unsigned
char
*
m
,
unsigned
long
long
*
mlen
,
unsigned
char
*
nsec
,
const
unsigned
char
*
c
,
unsigned
long
long
clen
,
const
unsigned
char
*
ad
,
unsigned
long
long
adlen
,
const
unsigned
char
*
npub
,
const
unsigned
char
*
k
)
{
(
void
)
nsec
;
int
res
=
paef_decrypt
(
m
,
c
,
clen
,
ad
,
adlen
,
npub
,
k
);
if
(
res
!=
-
1
)
*
mlen
=
clen
-
CRYPTO_ABYTES
;
return
res
;
}
Event Timeline
Log In to Comment