xref: /haiku/src/servers/keystore/Keyring.h (revision 6ef5917d45654e4c72c75cee9cbfe8bce54ad027)
195eee1a3SMichael Lotz /*
295eee1a3SMichael Lotz  * Copyright 2012, Michael Lotz, mmlr@mlotz.ch. All Rights Reserved.
395eee1a3SMichael Lotz  * Distributed under the terms of the MIT License.
495eee1a3SMichael Lotz  */
595eee1a3SMichael Lotz #ifndef _KEYRING_H
695eee1a3SMichael Lotz #define _KEYRING_H
795eee1a3SMichael Lotz 
895eee1a3SMichael Lotz 
995eee1a3SMichael Lotz #include <Key.h>
1095eee1a3SMichael Lotz #include <Message.h>
1195eee1a3SMichael Lotz 
1295eee1a3SMichael Lotz 
1395eee1a3SMichael Lotz class Keyring {
1495eee1a3SMichael Lotz public:
1595eee1a3SMichael Lotz 									Keyring(const char* name,
161dd765c9SMichael Lotz 										const BMessage* keyMessage = NULL);
1795eee1a3SMichael Lotz 									~Keyring();
1895eee1a3SMichael Lotz 
1995eee1a3SMichael Lotz 		const char*					Name() const { return fName; }
201b3bb46aSMichael Lotz 		status_t					ReadFromMessage(const BMessage& message);
211b3bb46aSMichael Lotz 		status_t					WriteToMessage(BMessage& message);
2295eee1a3SMichael Lotz 
23ac9b28f0SMichael Lotz 		status_t					Access(const BMessage& keyMessage);
24ac9b28f0SMichael Lotz 		void						RevokeAccess();
251dd765c9SMichael Lotz 		bool						IsAccessible() const;
261dd765c9SMichael Lotz 		const BMessage&				KeyMessage() const;
2795eee1a3SMichael Lotz 
2895eee1a3SMichael Lotz 		status_t					FindKey(const BString& identifier,
2995eee1a3SMichael Lotz 										const BString& secondaryIdentifier,
3095eee1a3SMichael Lotz 										bool secondaryIdentifierOptional,
311dd765c9SMichael Lotz 										BMessage* _foundKeyMessage) const;
3295eee1a3SMichael Lotz 		status_t					FindKey(BKeyType type, BKeyPurpose purpose,
3395eee1a3SMichael Lotz 										uint32 index,
341dd765c9SMichael Lotz 										BMessage& _foundKeyMessage) const;
3595eee1a3SMichael Lotz 
3695eee1a3SMichael Lotz 		status_t					AddKey(const BString& identifier,
3795eee1a3SMichael Lotz 										const BString& secondaryIdentifier,
3895eee1a3SMichael Lotz 										const BMessage& keyMessage);
3995eee1a3SMichael Lotz 		status_t					RemoveKey(const BString& identifier,
4095eee1a3SMichael Lotz 										const BMessage& keyMessage);
4195eee1a3SMichael Lotz 
4295eee1a3SMichael Lotz static	int							Compare(const Keyring* one,
4395eee1a3SMichael Lotz 										const Keyring* two);
4495eee1a3SMichael Lotz static	int							Compare(const BString* name,
4595eee1a3SMichael Lotz 										const Keyring* keyring);
4695eee1a3SMichael Lotz 
4795eee1a3SMichael Lotz private:
481b3bb46aSMichael Lotz 		status_t					_EncryptToFlatBuffer();
491b3bb46aSMichael Lotz 		status_t					_DecryptFromFlatBuffer();
501b3bb46aSMichael Lotz 
5195eee1a3SMichael Lotz 		BString						fName;
521b3bb46aSMichael Lotz 		BMallocIO					fFlatBuffer;
5395eee1a3SMichael Lotz 		BMessage					fData;
541b3bb46aSMichael Lotz 		BMessage					fApplications;
551dd765c9SMichael Lotz 		BMessage					fKeyMessage;
56ac9b28f0SMichael Lotz 		bool						fAccessible;
57*6ef5917dSMichael Lotz 		bool						fModified;
5895eee1a3SMichael Lotz };
5995eee1a3SMichael Lotz 
6095eee1a3SMichael Lotz 
6195eee1a3SMichael Lotz #endif // _KEYRING_H
62