mirror of git://gcc.gnu.org/git/gcc.git
				
				
				
			
		
			
				
	
	
		
			74 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C++
		
	
	
	
| 
 | |
| // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
 | |
| 
 | |
| #ifndef __javax_crypto_EncryptedPrivateKeyInfo__
 | |
| #define __javax_crypto_EncryptedPrivateKeyInfo__
 | |
| 
 | |
| #pragma interface
 | |
| 
 | |
| #include <java/lang/Object.h>
 | |
| #include <gcj/array.h>
 | |
| 
 | |
| extern "Java"
 | |
| {
 | |
|   namespace gnu
 | |
|   {
 | |
|     namespace java
 | |
|     {
 | |
|       namespace security
 | |
|       {
 | |
|           class OID;
 | |
|       }
 | |
|     }
 | |
|   }
 | |
|   namespace java
 | |
|   {
 | |
|     namespace security
 | |
|     {
 | |
|         class AlgorithmParameters;
 | |
|       namespace spec
 | |
|       {
 | |
|           class PKCS8EncodedKeySpec;
 | |
|       }
 | |
|     }
 | |
|   }
 | |
|   namespace javax
 | |
|   {
 | |
|     namespace crypto
 | |
|     {
 | |
|         class Cipher;
 | |
|         class EncryptedPrivateKeyInfo;
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| class javax::crypto::EncryptedPrivateKeyInfo : public ::java::lang::Object
 | |
| {
 | |
| 
 | |
| public:
 | |
|   EncryptedPrivateKeyInfo(::java::security::AlgorithmParameters *, JArray< jbyte > *);
 | |
|   EncryptedPrivateKeyInfo(JArray< jbyte > *);
 | |
|   EncryptedPrivateKeyInfo(::java::lang::String *, JArray< jbyte > *);
 | |
| private:
 | |
|   static ::gnu::java::security::OID * getOid(::java::lang::String *);
 | |
| public:
 | |
|   virtual ::java::lang::String * getAlgName();
 | |
|   virtual ::java::security::AlgorithmParameters * getAlgParameters();
 | |
|   virtual JArray< jbyte > * getEncoded();
 | |
|   virtual JArray< jbyte > * getEncryptedData();
 | |
|   virtual ::java::security::spec::PKCS8EncodedKeySpec * getKeySpec(::javax::crypto::Cipher *);
 | |
| private:
 | |
|   void decode();
 | |
|   void encode();
 | |
|   JArray< jbyte > * __attribute__((aligned(__alignof__( ::java::lang::Object)))) encryptedData;
 | |
|   JArray< jbyte > * encoded;
 | |
|   ::gnu::java::security::OID * algOid;
 | |
|   ::java::lang::String * algName;
 | |
|   ::java::security::AlgorithmParameters * params;
 | |
|   JArray< jbyte > * encodedParams;
 | |
| public:
 | |
|   static ::java::lang::Class class$;
 | |
| };
 | |
| 
 | |
| #endif // __javax_crypto_EncryptedPrivateKeyInfo__
 |