]>
git.saurik.com Git - apple/xnu.git/blob - osfmk/corecrypto/cc/src/cc_abort.c
7 * Copyright (c) 2014,2015 Apple Inc. All rights reserved.
11 #include <corecrypto/cc_priv.h>
13 //cc_abort() is implemented to comply with by FIPS 140-2, when DRBG produces
14 //two equal consecutive blocks. See radar 19129408
17 #include <kern/debug.h>
18 void cc_abort(const char * msg CC_UNUSED
, ...)
23 #elif CC_USE_SEPROM || CC_USE_S3 || CC_BASEBAND || CC_EFI || CC_IBOOT
24 void cc_abort(const char * msg CC_UNUSED
, ...)
26 //do nothing and return becasue we don't have panic() in those
32 void cc_abort(const char * msg CC_UNUSED
, ...)