Searched defs:keyBytes (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libdns_sd/java/com/apple/dnssd/
H A DTXTRecord.java76 byte[] keyBytes;
80 keyBytes = key.getBytes( "US-ASCII");
86 for ( int i=0; i < keyBytes.length; i++)
87 if ( keyBytes[i] == '=')
90 if ( keyBytes.length + valLen >= 255)
97 this.insert( keyBytes, value, prevLoc);
100 protected void insert( byte[] keyBytes, byte[] value, int index) argument
112 avLen = keyBytes.length + valLen + (value != null ? 1 : 0);
120 System.arraycopy( keyBytes, 0, fBytes, insertion + 1, keyBytes
[all...]
/illumos-gate/usr/src/common/crypto/skein/
H A Dskein.c86 * [identical to Skein_256_Init() when keyBytes == 0 &&
91 const uint8_t *key, size_t keyBytes)
99 Skein_Assert(keyBytes == 0 || key != NULL, SKEIN_FAIL);
102 if (keyBytes == 0) { /* is there a key? */
116 (void) Skein_256_Update(ctx, key, keyBytes);
143 Skein_Show_Key(256, &ctx->h, key, keyBytes);
323 * [identical to Skein_512_Init() when keyBytes == 0 &&
328 const uint8_t *key, size_t keyBytes)
336 Skein_Assert(keyBytes == 0 || key != NULL, SKEIN_FAIL);
339 if (keyBytes
90 Skein_256_InitExt(Skein_256_Ctxt_t *ctx, size_t hashBitLen, uint64_t treeInfo, const uint8_t *key, size_t keyBytes) argument
327 Skein_512_InitExt(Skein_512_Ctxt_t *ctx, size_t hashBitLen, uint64_t treeInfo, const uint8_t *key, size_t keyBytes) argument
560 Skein1024_InitExt(Skein1024_Ctxt_t *ctx, size_t hashBitLen, uint64_t treeInfo, const uint8_t *key, size_t keyBytes) argument
[all...]

Completed in 45 milliseconds