1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /*++
- Copyright (c) 2015 Minoca Corp. All Rights Reserved
- Module Name:
- Crypto Library
- Abstract:
- This library contains the Cryptographic Library functions used
- throughout Minoca OS.
- Author:
- Evan Green 13-Jan-2015
- Environment:
- Any
- --*/
- function build() {
- sources = [
- "aes.c",
- "fortuna.c",
- "hmac.c",
- "md5.c",
- "sha1.c",
- "sha256.c",
- "sha512.c"
- ];
- lib = {
- "label": "crypto",
- "inputs": sources,
- };
- build_lib = {
- "label": "build_crypto",
- "output": "crypto",
- "inputs": sources,
- "build": TRUE,
- "prefix": "build"
- };
- entries = static_library(lib);
- entries += static_library(build_lib);
- return entries;
- }
- return build();
|