1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
- #ifndef __gnu_java_security_hash_Sha160__
- #define __gnu_java_security_hash_Sha160__
- #pragma interface
- #include <gnu/java/security/hash/BaseHash.h>
- #include <gcj/array.h>
- extern "Java"
- {
- namespace gnu
- {
- namespace java
- {
- namespace security
- {
- namespace hash
- {
- class Sha160;
- }
- }
- }
- }
- }
- class gnu::java::security::hash::Sha160 : public ::gnu::java::security::hash::BaseHash
- {
- public:
- Sha160();
- private:
- Sha160(::gnu::java::security::hash::Sha160 *);
- public:
- static JArray< jint > * G(jint, jint, jint, jint, jint, JArray< jbyte > *, jint);
- virtual ::java::lang::Object * clone();
- public: // actually protected
- virtual void transform(JArray< jbyte > *, jint);
- virtual JArray< jbyte > * padBuffer();
- virtual JArray< jbyte > * getResult();
- virtual void resetContext();
- public:
- virtual jboolean selfTest();
- private:
- static JArray< jint > * sha(jint, jint, jint, jint, jint, JArray< jbyte > *, jint);
- static const jint BLOCK_SIZE = 64;
- static ::java::lang::String * DIGEST0;
- static JArray< jint > * w;
- static ::java::lang::Boolean * valid;
- jint __attribute__((aligned(__alignof__( ::gnu::java::security::hash::BaseHash)))) h0;
- jint h1;
- jint h2;
- jint h3;
- jint h4;
- public:
- static ::java::lang::Class class$;
- };
- #endif // __gnu_java_security_hash_Sha160__
|