OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:xcbc
(Results
1 - 3
of
3
) sorted by null
/external/dropbear/libtomcrypt/src/mac/xcbc/
xcbc_memory.c
15
XCBC
Support,
XCBC
-MAC a block of memory
20
/**
XCBC
-MAC a block of memory
35
xcbc_state *
xcbc
;
local
48
xcbc
= XCALLOC(1, sizeof(*
xcbc
));
49
if (
xcbc
== NULL) {
53
if ((err = xcbc_init(
xcbc
, cipher, key, keylen)) != CRYPT_OK) {
57
if ((err = xcbc_process(
xcbc
, in, inlen)) != CRYPT_OK) {
61
err = xcbc_done(
xcbc
, out, outlen)
[
all
...]
xcbc_memory_multi.c
16
XCBC
support, process multiple blocks of memory, Tom St Denis
22
XCBC
multiple blocks of memory
28
@param in The data to send through
XCBC
29
@param inlen The length of the data to send through
XCBC
(octets)
30
@param ... tuples of (data,len) pairs to
XCBC
, terminated with a (NULL,x) (x=don't care)
39
xcbc_state *
xcbc
;
local
49
/* allocate ram for
xcbc
state */
50
xcbc
= XMALLOC(sizeof(xcbc_state));
51
if (
xcbc
== NULL) {
55
/*
xcbc
process the message *
[
all
...]
/external/chromium_org/tools/gyp/pylib/gyp/generator/
xcode.py
97
xcbc
= gyp.xcodeproj_file.XCBuildConfiguration({
99
xccl.AppendProperty('buildConfigurations',
xcbc
)
137
for
xcbc
in xcbcs:
138
name =
xcbc
.GetProperty('name')
1209
xcbc
= xct.ConfigurationNamed(configuration_name)
variable
[
all
...]
Completed in 1304 milliseconds