Searched refs:keyBytes (Results 1 – 4 of 4) sorted by relevance
/titanic_50/usr/src/lib/libdns_sd/java/com/apple/dnssd/ |
H A D | TXTRecord.java | 76 byte[] keyBytes; in set() 80 keyBytes = key.getBytes( "US-ASCII"); in set() 86 for ( int i=0; i < keyBytes.length; i++) in set() 87 if ( keyBytes[i] == '=') in set() 90 if ( keyBytes.length + valLen >= 255) in set() 97 this.insert( keyBytes, value, prevLoc); in set() 100 protected void insert( byte[] keyBytes, byte[] value, int index) in insert() argument 112 avLen = keyBytes.length + valLen + (value != null ? 1 : 0); in insert() 120 System.arraycopy( keyBytes, 0, fBytes, insertion + 1, keyBytes.length); in insert() 123 fBytes[ insertion + 1 + keyBytes.length] = kAttrSep; in insert() [all …]
|
/titanic_50/usr/src/common/crypto/skein/ |
H A D | skein.c | 91 const uint8_t *key, size_t keyBytes) in Skein_256_InitExt() argument 99 Skein_Assert(keyBytes == 0 || key != NULL, SKEIN_FAIL); in Skein_256_InitExt() 102 if (keyBytes == 0) { /* is there a key? */ in Skein_256_InitExt() 116 (void) Skein_256_Update(ctx, key, keyBytes); in Skein_256_InitExt() 143 Skein_Show_Key(256, &ctx->h, key, keyBytes); in Skein_256_InitExt() 328 const uint8_t *key, size_t keyBytes) in Skein_512_InitExt() argument 336 Skein_Assert(keyBytes == 0 || key != NULL, SKEIN_FAIL); in Skein_512_InitExt() 339 if (keyBytes == 0) { /* is there a key? */ in Skein_512_InitExt() 352 (void) Skein_512_Update(ctx, key, keyBytes); /* hash the key */ in Skein_512_InitExt() 379 Skein_Show_Key(512, &ctx->h, key, keyBytes); in Skein_512_InitExt() [all …]
|
H A D | skein_impl.h | 202 #define Skein_Show_Key(bits, ctx, key, keyBytes) argument
|
/titanic_50/usr/src/uts/common/sys/ |
H A D | skein.h | 116 uint64_t treeInfo, const uint8_t *key, size_t keyBytes); 118 uint64_t treeInfo, const uint8_t *key, size_t keyBytes); 120 uint64_t treeInfo, const uint8_t *key, size_t keyBytes);
|