Searched refs:K2 (Results 1 - 25 of 59) sorted by relevance

123

/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/
H A Dsha.c66 #define K2 0x8f1bbcdc macro
147 DO(40,F2,K2);
148 DO(41,F2,K2);
149 DO(42,F2,K2);
150 DO(43,F2,K2);
151 DO(44,F2,K2);
152 DO(45,F2,K2);
153 DO(46,F2,K2);
154 DO(47,F2,K2);
155 DO(48,F2,K2);
[all...]
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/mac/libdes/src/
H A Dsha.c86 /* * Copyright (c) 1995, 1996, 1997, 1998 Kungliga Tekniska H�gskolan * (Royal Institute of Technology, Stockholm, Sweden). * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Kungliga Tekniska * H�gskolan and its contributors. * * 4. Neither the name of the Institute nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #ifdef HAVE_CONFIG_H #include "config.h" RCSID("$Id: sha.c,v 1.4 2005/01/10 19:09:08 snsimon Exp $"); #endif #include <stdlib.h> #include <string.h> #include "sha.h" #ifndef min #define min(a,b) (((a)>(b))?(b):(a)) #endif #define A m->counter[0] #define B m->counter[1] #define C m->counter[2] #define D m->counter[3] #define E m->counter[4] #define X data void sha_init (struct sha *m) { m->offset = 0; m->sz = 0; A = 0x67452301; B = 0xefcdab89; C = 0x98badcfe; D = 0x10325476; E = 0xc3d2e1f0; } static inline u_int32_t cshift (u_int32_t x, unsigned int n) { return (x << n) | (x >> (32 - n)); } #define F0(x,y,z) ((x & y) | (~x & z)) #define F1(x,y,z) (x ^ y ^ z) #define F2(x,y,z) ((x & y) | (x & z) | (y & z)) #define F3(x,y,z) F1(x,y,z) #define K0 0x5a827999 #define K1 0x6ed9eba1 #define K2 0x8f1bbcdc #define K3 0xca62c1d6 #define DO(t,f,k) \ do { \ u_int32_t temp; \ \ temp = cshift(AA, 5) + f(BB,CC,DD) + EE + data[t] + k; \ EE = DD; \ DD = CC; \ CC = cshift(BB, 30); \ BB = AA; \ AA = temp; \ } while(0) static inline void calc (struct sha *m, u_int32_t *in) { u_int32_t AA, BB, CC, DD, EE; u_int32_t data[80]; int i; AA = A; BB = B; CC = C; DD = D; EE = E; for (i = 0; i < 16; ++i) data[i] = in[i]; for (i = 16; i < 80; ++i) data[i] = cshift(data[i-3] ^ data[i-8] ^ data[i-14] ^ data[i-16], 1); /* t=[0,19] */ DO(0,F0,K0); DO(1,F0,K0); DO(2,F0,K0); DO(3,F0,K0); DO(4,F0,K0); DO(5,F0,K0); DO(6,F0,K0); DO(7,F0,K0); DO(8,F0,K0); DO(9,F0,K0); DO(10,F0,K0); DO(11,F0,K0); DO(12,F0,K0); DO(13,F0,K0); DO(14,F0,K0); DO(15,F0,K0); DO(16,F0,K0); DO(17,F0,K0); DO(18,F0,K0); DO(19,F0,K0); /* t=[20,39] */ DO(20,F1,K1); DO(21,F1,K1); DO(22,F1,K1); DO(23,F1,K1); DO(24,F1,K1); DO(25,F1,K1); DO(26,F1,K1); DO(27,F1,K1); DO(28,F1,K1); DO(29,F1,K1); DO(30,F1,K1); DO(31,F1,K1); DO(32,F1,K1); DO(33,F1,K1); DO(34,F1,K1); DO(35,F1,K1); DO(36,F1,K1); DO(37,F1,K1); DO(38,F1,K1); DO(39,F1,K1); /* t=[40,59] */ DO(40,F2,K2); DO(41,F2,K2); DO(42,F2,K2); DO(43,F2,K2); DO(44,F2,K2); DO(45,F2,K2); DO(46,F2,K2); DO(47,F2,K2); DO(48,F2,K2); D
[all...]
/macosx-10.9.5/CommonCrypto-60049/lib/
H A DCommonCMAC.c107 uint8_t K1[16], K2[16]; local
119 ccGenAESSubKey(aesmode, ctx, K1, K2);
137 xor_128(padded,K2,M_last);
/macosx-10.9.5/CPANInternal-140/Digest-SHA/src/
H A Dsha.c44 #define K2 C32(0x6ed9eba1) macro
128 M14(Ch, K1, A1( 2)); M15(Ch, K1, A1( 3)); M11(Pa, K2, A1( 4));
129 M12(Pa, K2, A1( 5)); M13(Pa, K2, A1( 6)); M14(Pa, K2, A1( 7));
130 M15(Pa, K2, A1( 8)); M11(Pa, K2, A1( 9)); M12(Pa, K2, A1(10));
131 M13(Pa, K2, A1(11)); M14(Pa, K2, A
[all...]
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGFECompositeElement.h95 DECLARE_ANIMATED_NUMBER(K2, k2)
H A DSVGFECompositeElement.cpp39 DEFINE_ANIMATED_NUMBER(SVGFECompositeElement, SVGNames::k2Attr, K2, k2)
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/tm/
H A Dtmxdate.c143 #define K2(c1,c2) (((c1)<<8)|(c2)) macro
1109 case K2('y','r'):
1110 case K2('Y','R'):
1115 case K2('m','o'):
1116 case K2('M','O'):
1122 case K2('w','k'):
1123 case K2('W','K'):
1129 case K2('d','a'):
1130 case K2('d','y'):
1131 case K2('
[all...]
/macosx-10.9.5/CPANInternal-140/DateTime-Locale/lib/DateTime/Locale/
H A Dmt.pm112 my $quarter_format_abbreviated = [ "K1", "K2", "K3", "K4" ];
116 my $quarter_format_wide = [ "K1", "K2", "K3", "K4" ];
371 K2
378 K2
392 K2
399 K2
H A Dmt_MT.pm248 K2
255 K2
269 K2
276 K2
H A Daf.pm112 my $quarter_format_abbreviated = [ "K1", "K2", "K3", "K4" ];
384 K2
405 K2
H A Daf_NA.pm289 K2
310 K2
H A Daf_ZA.pm250 K2
271 K2
H A Dbs.pm108 my $quarter_format_abbreviated = [ "K1", "K2", "K3", "K4" ];
350 K2
371 K2
H A Dbs_BA.pm245 K2
266 K2
H A Dda_DK.pm250 K2
271 K2
H A Deo.pm108 my $quarter_format_abbreviated = [ "K1", "K2", "K3", "K4" ];
350 K2
371 K2
H A Det.pm112 my $quarter_format_abbreviated = [ "K1", "K2", "K3", "K4" ];
384 K2
405 K2
H A Det_EE.pm250 K2
271 K2
H A Dfo.pm113 my $quarter_format_abbreviated = [ "K1", "K2", "K3", "K4" ];
391 K2
412 K2
H A Dfo_FO.pm250 K2
271 K2
H A Did.pm108 my $quarter_format_abbreviated = [ "K1", "K2", "K3", "K4" ];
380 K2
401 K2
H A Did_ID.pm250 K2
271 K2
H A Dnb_NO.pm250 K2
271 K2
/macosx-10.9.5/Security-55471.14.18/include/security_cryptkit/
H A DckSHA1_priv.c47 #define K2 0x6ED9EBA1L /* Rounds 20-39 */ macro
90 temp = S( 5, A ) + f2( B, C, D ) + E + W[ count ] + K2; \
/macosx-10.9.5/Security-55471.14.18/libsecurity_cryptkit/lib/
H A DckSHA1_priv.c47 #define K2 0x6ED9EBA1L /* Rounds 20-39 */ macro
90 temp = S( 5, A ) + f2( B, C, D ) + E + W[ count ] + K2; \

Completed in 121 milliseconds

123