-
Notifications
You must be signed in to change notification settings - Fork 109
support raspberry pi #89
Comments
Hey, been almost a year, any hint when it's going to be available? Thanks! |
We will have a platform-support push in the coming months after the launch of our teams product (coming very soon!) Thanks for being patient! |
Any updates about this? Thanks! |
Any Updates on this? |
Bumping this again! |
The source type of the session allocator, usize, is variable, as is the destination type of c_ulong. The current usize -> u64 ->(implicit) c_ulong can fail on some systems (e.g., Raspberry Pi uses a 32-bit c_ulong). PKCS kryptco#11 requires only that the size type be at least 32 bits. Casting directly to the destination type allows for greater platform support without affecting existing platforms. Resolves kryptco#89
The implicit conversion from u64 to c_ulong fails on 32-bit platforms. The actual array size is 2 and unlikely to every pose a problem. Resolves kryptco#89
The source type of the session allocator, usize, is variable, as is the destination type of c_ulong. The current usize -> u64 ->(implicit) c_ulong can fail on some systems (e.g., Raspberry Pi uses a 32-bit c_ulong). PKCS kryptco#11 requires only that the size type be at least 32 bits. Casting directly to the destination type allows for greater platform support without affecting existing platforms. I agree to license all rights to my contributions in each modified file exclusively to KryptCo, Inc. Resolves kryptco#89
The implicit conversion from u64 to c_ulong fails on 32-bit platforms. The actual array size is 2 and unlikely to every pose a problem. I agree to license all rights to my contributions in each modified file exclusively to KryptCo, Inc. Resolves kryptco#89
The Raspberry Pi doesn’t get much love here |
The entire project has been abandoned as far as I know |
This is sad, this project was pretty cool |
This is not the case, still very much alive. But unfortunately don’t have plans currently to add Rpi support at this time. Contributions/pull requests on this are welcome! |
Considering raspi support is pretty much arm64 support, which is pretty similar I imagine to apple silicon (another arm64 architecture), is this being reconsidered? |
Anyone have any suggestions for alternatives? Or is there a bounty amount that would make this happen? |
Actually, it works fine for raspberry pi 4 if you build from source sudo snap install go --classic
sudo apt install make
git clone https://github.com/kryptco/kr.git
cd kr
make install
make start
kr pair All that is needed is for a prebuilt binary to be published and added to the installer. |
No description provided.
The text was updated successfully, but these errors were encountered: