mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-09 00:05:22 +00:00
57 lines
1.1 KiB
C++
57 lines
1.1 KiB
C++
|
|
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
|
|
|
|
#ifndef __javax_crypto_MacSpi__
|
|
#define __javax_crypto_MacSpi__
|
|
|
|
#pragma interface
|
|
|
|
#include <java/lang/Object.h>
|
|
#include <gcj/array.h>
|
|
|
|
extern "Java"
|
|
{
|
|
namespace java
|
|
{
|
|
namespace nio
|
|
{
|
|
class ByteBuffer;
|
|
}
|
|
namespace security
|
|
{
|
|
class Key;
|
|
namespace spec
|
|
{
|
|
class AlgorithmParameterSpec;
|
|
}
|
|
}
|
|
}
|
|
namespace javax
|
|
{
|
|
namespace crypto
|
|
{
|
|
class MacSpi;
|
|
}
|
|
}
|
|
}
|
|
|
|
class javax::crypto::MacSpi : public ::java::lang::Object
|
|
{
|
|
|
|
public:
|
|
MacSpi();
|
|
virtual ::java::lang::Object * clone();
|
|
public: // actually protected
|
|
virtual JArray< jbyte > * engineDoFinal() = 0;
|
|
virtual jint engineGetMacLength() = 0;
|
|
virtual void engineInit(::java::security::Key *, ::java::security::spec::AlgorithmParameterSpec *) = 0;
|
|
virtual void engineReset() = 0;
|
|
virtual void engineUpdate(jbyte) = 0;
|
|
virtual void engineUpdate(JArray< jbyte > *, jint, jint) = 0;
|
|
virtual void engineUpdate(::java::nio::ByteBuffer *);
|
|
public:
|
|
static ::java::lang::Class class$;
|
|
};
|
|
|
|
#endif // __javax_crypto_MacSpi__
|