aboutsummaryrefslogtreecommitdiff
path: root/libjava/gnu/javax/crypto/sasl/OutputBuffer.h
blob: 40cd18911cc514706f566b844b094c79f5ad068a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54

// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-

#ifndef __gnu_javax_crypto_sasl_OutputBuffer__
#define __gnu_javax_crypto_sasl_OutputBuffer__

#pragma interface

#include <java/lang/Object.h>
#include <gcj/array.h>

extern "Java"
{
  namespace gnu
  {
    namespace javax
    {
      namespace crypto
      {
        namespace sasl
        {
            class OutputBuffer;
        }
      }
    }
  }
  namespace java
  {
    namespace math
    {
        class BigInteger;
    }
  }
}

class gnu::javax::crypto::sasl::OutputBuffer : public ::java::lang::Object
{

public:
  OutputBuffer();
  virtual void setScalar(jint, jint);
  virtual void setOS(JArray< jbyte > *);
  virtual void setEOS(JArray< jbyte > *);
  virtual void setMPI(::java::math::BigInteger *);
  virtual void setText(::java::lang::String *);
  virtual JArray< jbyte > * encode();
  virtual JArray< jbyte > * wrap();
private:
  ::java::io::ByteArrayOutputStream * __attribute__((aligned(__alignof__( ::java::lang::Object)))) out;
public:
  static ::java::lang::Class class$;
};

#endif // __gnu_javax_crypto_sasl_OutputBuffer__