141 lines
4.0 KiB
C
141 lines
4.0 KiB
C
/*
|
|
* Copyright (c) 2014-2016 Yubico AB
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are
|
|
* met:
|
|
*
|
|
* * Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
*
|
|
* * Redistributions in binary form must reproduce the above
|
|
* copyright notice, this list of conditions and the following
|
|
* disclaimer in the documentation and/or other materials provided
|
|
* with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
*/
|
|
|
|
#ifndef YKPIV_INTERNAL_H
|
|
#define YKPIV_INTERNAL_H
|
|
|
|
#include "ykpiv.h"
|
|
|
|
#include <stdbool.h>
|
|
|
|
#if BACKEND_PCSC
|
|
#if defined HAVE_PCSC_WINSCARD_H
|
|
# include <PCSC/wintypes.h>
|
|
# include <PCSC/winscard.h>
|
|
#else
|
|
# include <winscard.h>
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#define DES_TYPE_3DES 1
|
|
|
|
#define DES_LEN_DES 8
|
|
#define DES_LEN_3DES DES_LEN_DES*3
|
|
|
|
#define READER_LEN 32
|
|
#define MAX_READERS 16
|
|
|
|
#define CB_MGM_KEY DES_LEN_3DES
|
|
|
|
// the object size is restricted to the firmware's message buffer size, which
|
|
// always contains 0x5C + 1 byte len + 3 byte id + 0x53 + 3 byte len = 9 bytes,
|
|
// so while the message buffer == CB_BUF_MAX, the maximum object we can store
|
|
// is CB_BUF_MAX - 9
|
|
#define CB_OBJ_MAX_NEO (CB_BUF_MAX_NEO - 9)
|
|
#define CB_OBJ_MAX_YK4 (CB_BUF_MAX_YK4 - 9)
|
|
#define CB_OBJ_MAX CB_OBJ_MAX_YK4
|
|
|
|
#define CB_BUF_MAX_NEO 2048
|
|
#define CB_BUF_MAX_YK4 3072
|
|
#define CB_BUF_MAX CB_BUF_MAX_YK4
|
|
|
|
#define CB_ATR_MAX 33
|
|
|
|
#define CHREF_ACT_CHANGE_PIN 0
|
|
#define CHREF_ACT_UNBLOCK_PIN 1
|
|
#define CHREF_ACT_CHANGE_PUK 2
|
|
|
|
#define TAG_CERT 0x70
|
|
#define TAG_CERT_COMPRESS 0x71
|
|
#define TAG_CERT_LRC 0xFE
|
|
// TREV TODO: other tags here?
|
|
|
|
typedef enum {
|
|
DES_OK = 0,
|
|
DES_INVALID_PARAMETER = -1,
|
|
DES_BUFFER_TOO_SMALL = -2,
|
|
DES_MEMORY_ERROR = -3,
|
|
DES_GENERAL_ERROR = -4
|
|
} des_rc;
|
|
|
|
typedef enum {
|
|
PKCS5_OK = 0,
|
|
PKCS5_GENERAL_ERROR = -1
|
|
} pkcs5_rc;
|
|
|
|
typedef enum {
|
|
PRNG_OK = 0,
|
|
PRNG_GENERAL_ERROR = -1
|
|
} prng_rc;
|
|
|
|
struct ykpiv_state {
|
|
SCARDCONTEXT context;
|
|
SCARDHANDLE card;
|
|
int verbose;
|
|
char *pin;
|
|
ykpiv_allocator allocator;
|
|
bool isNEO;
|
|
};
|
|
|
|
union u_APDU {
|
|
struct {
|
|
unsigned char cla;
|
|
unsigned char ins;
|
|
unsigned char p1;
|
|
unsigned char p2;
|
|
unsigned char lc;
|
|
unsigned char data[0xff];
|
|
} st;
|
|
unsigned char raw[0xff + 5];
|
|
};
|
|
|
|
typedef union u_APDU APDU;
|
|
typedef struct des_key des_key;
|
|
|
|
extern unsigned const char aid[];
|
|
|
|
des_rc des_import_key(const int type, const unsigned char* keyraw, const size_t keyrawlen, des_key** key);
|
|
des_rc des_destroy_key(des_key* key);
|
|
des_rc des_encrypt(des_key* key, const unsigned char* in, const size_t inlen, unsigned char* out, size_t* outlen);
|
|
des_rc des_decrypt(des_key* key, const unsigned char* in, const size_t inlen, unsigned char* out, size_t* outlen);
|
|
bool yk_des_is_weak_key(const unsigned char *key, const size_t cb_key);
|
|
pkcs5_rc pkcs5_pbkdf2_sha1(const unsigned char* password, const size_t cb_password, const unsigned char* salt, const size_t cb_salt, unsigned long long iterations, unsigned char* key, const size_t cb_key);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|