xref: /haiku/src/servers/keystore/Keyring.h (revision d4d6d1239322eeb4c100489eb76ed63afde449d6)
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:
15*d4d6d123SMichael Lotz 									Keyring(const char* name);
1695eee1a3SMichael Lotz 									~Keyring();
1795eee1a3SMichael Lotz 
1895eee1a3SMichael Lotz 		const char*					Name() const { return fName; }
191b3bb46aSMichael Lotz 		status_t					ReadFromMessage(const BMessage& message);
201b3bb46aSMichael Lotz 		status_t					WriteToMessage(BMessage& message);
2195eee1a3SMichael Lotz 
22c8ae843fSMichael Lotz 		status_t					Unlock(const BMessage& keyMessage);
23c8ae843fSMichael Lotz 		void						Lock();
24c8ae843fSMichael Lotz 		bool						IsUnlocked() const;
251dd765c9SMichael Lotz 		const BMessage&				KeyMessage() const;
2695eee1a3SMichael Lotz 
270778e147SMichael Lotz 		status_t					GetNextApplication(uint32& cookie,
280778e147SMichael Lotz 										BString& signature, BString& path);
29d389650aSMichael Lotz 		status_t					FindApplication(const char* signature,
30d389650aSMichael Lotz 										const char* path, BMessage& appMessage);
31d389650aSMichael Lotz 		status_t					AddApplication(const char* signature,
32d389650aSMichael Lotz 										const BMessage& appMessage);
33d389650aSMichael Lotz 		status_t					RemoveApplication(const char* signature,
34d389650aSMichael Lotz 										const char* path);
35d389650aSMichael Lotz 
3695eee1a3SMichael Lotz 		status_t					FindKey(const BString& identifier,
3795eee1a3SMichael Lotz 										const BString& secondaryIdentifier,
3895eee1a3SMichael Lotz 										bool secondaryIdentifierOptional,
391dd765c9SMichael Lotz 										BMessage* _foundKeyMessage) const;
4095eee1a3SMichael Lotz 		status_t					FindKey(BKeyType type, BKeyPurpose purpose,
4195eee1a3SMichael Lotz 										uint32 index,
421dd765c9SMichael Lotz 										BMessage& _foundKeyMessage) const;
4395eee1a3SMichael Lotz 
4495eee1a3SMichael Lotz 		status_t					AddKey(const BString& identifier,
4595eee1a3SMichael Lotz 										const BString& secondaryIdentifier,
4695eee1a3SMichael Lotz 										const BMessage& keyMessage);
4795eee1a3SMichael Lotz 		status_t					RemoveKey(const BString& identifier,
4895eee1a3SMichael Lotz 										const BMessage& keyMessage);
4995eee1a3SMichael Lotz 
5095eee1a3SMichael Lotz static	int							Compare(const Keyring* one,
5195eee1a3SMichael Lotz 										const Keyring* two);
5295eee1a3SMichael Lotz static	int							Compare(const BString* name,
5395eee1a3SMichael Lotz 										const Keyring* keyring);
5495eee1a3SMichael Lotz 
5595eee1a3SMichael Lotz private:
561b3bb46aSMichael Lotz 		status_t					_EncryptToFlatBuffer();
571b3bb46aSMichael Lotz 		status_t					_DecryptFromFlatBuffer();
581b3bb46aSMichael Lotz 
5995eee1a3SMichael Lotz 		BString						fName;
601b3bb46aSMichael Lotz 		BMallocIO					fFlatBuffer;
6195eee1a3SMichael Lotz 		BMessage					fData;
621b3bb46aSMichael Lotz 		BMessage					fApplications;
631dd765c9SMichael Lotz 		BMessage					fKeyMessage;
64c8ae843fSMichael Lotz 		bool						fUnlocked;
656ef5917dSMichael Lotz 		bool						fModified;
6695eee1a3SMichael Lotz };
6795eee1a3SMichael Lotz 
6895eee1a3SMichael Lotz 
6995eee1a3SMichael Lotz #endif // _KEYRING_H
70