xref: /haiku/src/servers/keystore/Keyring.h (revision d389650a7af43f0b9930fd1257362e4ecd2d5a43)
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 
28*d389650aSMichael Lotz 		status_t					FindApplication(const char* signature,
29*d389650aSMichael Lotz 										const char* path, BMessage& appMessage);
30*d389650aSMichael Lotz 		status_t					AddApplication(const char* signature,
31*d389650aSMichael Lotz 										const BMessage& appMessage);
32*d389650aSMichael Lotz 		status_t					RemoveApplication(const char* signature,
33*d389650aSMichael Lotz 										const char* path);
34*d389650aSMichael Lotz 
3595eee1a3SMichael Lotz 		status_t					FindKey(const BString& identifier,
3695eee1a3SMichael Lotz 										const BString& secondaryIdentifier,
3795eee1a3SMichael Lotz 										bool secondaryIdentifierOptional,
381dd765c9SMichael Lotz 										BMessage* _foundKeyMessage) const;
3995eee1a3SMichael Lotz 		status_t					FindKey(BKeyType type, BKeyPurpose purpose,
4095eee1a3SMichael Lotz 										uint32 index,
411dd765c9SMichael Lotz 										BMessage& _foundKeyMessage) const;
4295eee1a3SMichael Lotz 
4395eee1a3SMichael Lotz 		status_t					AddKey(const BString& identifier,
4495eee1a3SMichael Lotz 										const BString& secondaryIdentifier,
4595eee1a3SMichael Lotz 										const BMessage& keyMessage);
4695eee1a3SMichael Lotz 		status_t					RemoveKey(const BString& identifier,
4795eee1a3SMichael Lotz 										const BMessage& keyMessage);
4895eee1a3SMichael Lotz 
4995eee1a3SMichael Lotz static	int							Compare(const Keyring* one,
5095eee1a3SMichael Lotz 										const Keyring* two);
5195eee1a3SMichael Lotz static	int							Compare(const BString* name,
5295eee1a3SMichael Lotz 										const Keyring* keyring);
5395eee1a3SMichael Lotz 
5495eee1a3SMichael Lotz private:
551b3bb46aSMichael Lotz 		status_t					_EncryptToFlatBuffer();
561b3bb46aSMichael Lotz 		status_t					_DecryptFromFlatBuffer();
571b3bb46aSMichael Lotz 
5895eee1a3SMichael Lotz 		BString						fName;
591b3bb46aSMichael Lotz 		BMallocIO					fFlatBuffer;
6095eee1a3SMichael Lotz 		BMessage					fData;
611b3bb46aSMichael Lotz 		BMessage					fApplications;
621dd765c9SMichael Lotz 		BMessage					fKeyMessage;
63ac9b28f0SMichael Lotz 		bool						fAccessible;
646ef5917dSMichael Lotz 		bool						fModified;
6595eee1a3SMichael Lotz };
6695eee1a3SMichael Lotz 
6795eee1a3SMichael Lotz 
6895eee1a3SMichael Lotz #endif // _KEYRING_H
69