OSDN Git Service

Merged gcj-eclipse branch to trunk.
[pf3gnuchains/gcc-fork.git] / libjava / gnu / java / security / hash / RipeMD160.h
1
2 // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
3
4 #ifndef __gnu_java_security_hash_RipeMD160__
5 #define __gnu_java_security_hash_RipeMD160__
6
7 #pragma interface
8
9 #include <gnu/java/security/hash/BaseHash.h>
10 #include <gcj/array.h>
11
12 extern "Java"
13 {
14   namespace gnu
15   {
16     namespace java
17     {
18       namespace security
19       {
20         namespace hash
21         {
22             class RipeMD160;
23         }
24       }
25     }
26   }
27 }
28
29 class gnu::java::security::hash::RipeMD160 : public ::gnu::java::security::hash::BaseHash
30 {
31
32 public:
33   RipeMD160();
34 private:
35   RipeMD160(::gnu::java::security::hash::RipeMD160 *);
36 public:
37   virtual ::java::lang::Object * clone();
38 public: // actually protected
39   virtual void transform(JArray< jbyte > *, jint);
40   virtual JArray< jbyte > * padBuffer();
41   virtual JArray< jbyte > * getResult();
42   virtual void resetContext();
43 public:
44   virtual jboolean selfTest();
45 private:
46   static const jint BLOCK_SIZE = 64;
47   static ::java::lang::String * DIGEST0;
48   static JArray< jint > * R;
49   static JArray< jint > * Rp;
50   static JArray< jint > * S;
51   static JArray< jint > * Sp;
52   static ::java::lang::Boolean * valid;
53   jint __attribute__((aligned(__alignof__( ::gnu::java::security::hash::BaseHash)))) h0;
54   jint h1;
55   jint h2;
56   jint h3;
57   jint h4;
58   JArray< jint > * X;
59 public:
60   static ::java::lang::Class class$;
61 };
62
63 #endif // __gnu_java_security_hash_RipeMD160__