blob: e3dac6507a7f91462f8b2fee8d4882591fe8ba3e [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
#ifndef __EF_NRF5X_H__
#define __EF_NRF5X_H__
/*
* Encrypting flash driver for nrf51/nrf52
*/
#include <enc_flash/enc_flash.h>
#ifdef __cplusplus
extern "C" {
#endif
/*
* Structure used by ECB of nrf52 (and nrf51).
*/
struct eflash_nrf5x_ecb {
uint8_t ene_key[ENC_FLASH_BLK];
uint8_t ene_plain[ENC_FLASH_BLK];
uint8_t ene_cipher[ENC_FLASH_BLK];
};
/*
* NRF51/52 specific version of the flash device.
*/
struct eflash_nrf5x_dev {
struct enc_flash_dev end_dev;
struct eflash_nrf5x_ecb end_ecb;
};
#ifdef __cplusplus
}
#endif
#endif /* __ENC_FLASH_NRF5X_H__ */