HomeSort by relevance Sort by last modified time
    Searched full:auth_mod (Results 1 - 5 of 5) sorted by null

  /device/linaro/bootloader/arm-trusted-firmware/common/
auth.c 40 assert(auth_mod.name);
41 assert(auth_mod.init);
42 assert(auth_mod.verify);
44 INFO("Using authentication module '%s'\n", auth_mod.name);
45 if (auth_mod.init() != 0)
58 assert(auth_mod.verify);
60 return auth_mod.verify(obj_id, obj_buf, len);
  /device/linaro/bootloader/arm-trusted-firmware/include/common/
auth.h 43 * 'auth_mod' and must provide the functions to initialize the module and
82 extern const auth_mod_t auth_mod;
  /device/linaro/bootloader/arm-trusted-firmware/
Makefile 77 AUTH_MOD := none
313 ifeq (${AUTH_MOD},none)
314 $(error Error: When TRUSTED_BOARD_BOOT=1, AUTH_MOD has to be the name of a valid authentication module)
316 # We expect to locate an *.mk file under the specified AUTH_MOD directory
317 AUTH_MAKE := $(shell m="common/auth/${AUTH_MOD}/${AUTH_MOD}.mk"; [ -f "$$m" ] && echo "$$m")
319 $(error Error: No common/auth/${AUTH_MOD}/${AUTH_MOD}.mk located)
  /device/linaro/bootloader/arm-trusted-firmware/common/auth/polarssl/
polarssl.c 579 const auth_mod_t auth_mod = { variable
  /device/linaro/bootloader/arm-trusted-firmware/docs/
user-guide.md 262 initialization of the `AUTH_MOD` option. Generation and inclusion of
265 * `AUTH_MOD`: This option is used when `TRUSTED_BOARD_BOOT=1`. It specifies
489 * `AUTH_MOD=polarssl`
    [all...]

Completed in 254 milliseconds