Re: otp vs totp

2024-02-02 Thread Bastian Tweddell
On 01Feb24 08:44-0800, Quanah Gibson-Mount wrote: > After discussion in today's project team meeting, we've opened an issue to > have this supported by slapo-otp in the future: > > > > If you follow that bug, once a solution is in, we'd always

Re: LMDB cursor position

2024-02-02 Thread M Gurschi
...in addition, Can i rely that for both: *mdb_cursor_get(key, data, MDB_SET_RANGE)* and *mdb_cursor_get(key, data, MDB_NEXT)* , if the call returns *MDB_NOTFOUND*, then the key i passed in the call will be left unmodified? Kind Regards, Maxim Gurschi On 2 Feb 2024, at 11:23, M Gurschi

Re: LMDB cursor position

2024-02-02 Thread M Gurschi
Hello Howard, Tell me please, after *mdb_cursor_get(key, data, MDB_SET_RANGE)*, if i want to consume the key, if i understand correctly the key will be updated (on success). Will the reference to data also be updated or do i need to do: *mdb_cursor_get(key, data, MDB_GET_CURRENT)* to get data