Hendrik Kunert

Results 10 issues of Hendrik Kunert

Add checked conversion for `Int` to primitive types (`u8`, `u16`, `u32`, ...), similar as in num::bigint trait. ``` fn to_i64(&self) -> Option { ... } ```

I'm working on a Rust implementation of Paillier cryptosystem (https://github.com/kunerd/rpaillier). After I started I realised a lag of fundamental big number arithmetic functions like `mod_pow` and `mod_inverse`. At the moment...

This ticket is intended for discussing on how to add support for Atmels `.atdf` files to `svd2rust`. At first we should collect the work that already has been done by...

I came to a point where I need some `ns` delays, which can't be achieved by using the `Delay` trait. So I have done a bit of research and found...

I'm trying to test a DNS server I build and for this to work I need to forward `upd` ports from inside the container to my host system. The docker...

### Steps To Reproduce I'm currently trying to build [Whisperfish](https://gitlab.com/rubdos/whisperfish) in [SailfishOS ApplicationSDK](https://sailfishos.org/wiki/Application_SDK), which is basically an docker container with emulated `armv7-unknown-linux-gnueabihf` architecture. Petgraph is included as an dependency of...

bug
help wanted

The following: ``` var myobj = { firstName:"Joachim", lastName:"Wester" }; observer = jsonpatch.observe( myobj ); myobj.test = function() { console.log('do something') }; ``` produces the not standard compliant output: ```...

Hi, maybe the changes I did in a bigger refactoring of my LCD-lib would be of interest for you. Especially the zero-cost abstraction of CGRAM and DDRAM, which guaranties exclusive...

At the moment we only implemented the simplest encryption and decryption scheme, that Paillier gives in his paper. We should now also implement the optimizations he gives at p. 9ff.

enhancement