mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-05-07 00:46:17 +08:00
11 lines
230 B
C
11 lines
230 B
C
/*
|
|
* Copyright (C) 2017 Nagravision S.A.
|
|
*/
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
int aesctr256 (uint8_t *out, const uint8_t *sk, const void *counter, int bytes);
|
|
|
|
int aesctr256_zeroiv (uint8_t *out, const uint8_t *sk, int bytes);
|