Load site modules...
lade...
random avatar

gf_256 - Network

Posts Subscribe

https://infosec.exchange/@gf_256...

28.1.2025 19:36
https://infosec.exchange/@gf_256...

you compile your kernel in the cloud.i compile kernel in…

https://infosec.exchange/@gf_256...

you compile your kernel in the cloud.
i compile kernel in…

17.1.2025 20:38you compile your kernel in the cloud.i compile kernel in…
https://infosec.exchange/@gf_256...

Code: github.com/stong/tldw/

https://infosec.exchange/@gf_256...

Code: github.com/stong/tldw/

11.1.2025 05:25Code: github.com/stong/tldw/
https://infosec.exchange/@gf_256...

Many YouTube videos lately are clickbait and stretch out a Wikipedia page into 30 minutes. Many videos are just questions with simple...

https://infosec.exchange/@gf_256...

Many YouTube videos lately are clickbait and stretch out a Wikipedia page into 30 minutes. Many videos are just questions with simple answers.

So I built tldw.tube: put in the URL and save your time!

(No hate on Veritasium, it just happened to work well for the screenshot)

11.1.2025 05:25Many YouTube videos lately are clickbait and stretch out a Wikipedia page into 30 minutes. Many videos are just questions with simple...
https://infosec.exchange/@gf_256...

Hello from 38C3!

https://infosec.exchange/@gf_256...

Hello from 38C3!

27.12.2024 21:04Hello from 38C3!
https://infosec.exchange/@gf_256...

My videos for Flare-On 2024 are live! Watch me reverse engineer all the challenges from start to end. 🎉🥳+ Commentary video featuring...

https://infosec.exchange/@gf_256...

My videos for Flare-On 2024 are live! Watch me reverse engineer all the challenges from start to end. 🎉🥳

+ Commentary video featuring SuperFashi, where we review the chals together.

* 45 hours of content
* 400+ GB of raw footage

Merry Christmas! Link: youtube.com/watch?v=vwW9xvr3Tc

25.12.2024 23:59My videos for Flare-On 2024 are live! Watch me reverse engineer all the challenges from start to end. 🎉🥳+ Commentary video featuring...
https://infosec.exchange/@gf_256...

typical friday night

https://infosec.exchange/@gf_256...

typical friday night

17.2.2024 07:38typical friday night
https://infosec.exchange/@gf_256...

Fun friday night coding project: UBSAN but for Javait works as a javaagent, instrumenting all loaded classes at the bytecode level. it lifts...

https://infosec.exchange/@gf_256...

Fun friday night coding project: UBSAN but for Java

it works as a javaagent, instrumenting all loaded classes at the bytecode level. it lifts the bytecode to SSA IR, replaces BinOp nodes for arithmetic with a function call to a checked version of the op, then recompile bytecode

17.2.2024 07:38Fun friday night coding project: UBSAN but for Javait works as a javaagent, instrumenting all loaded classes at the bytecode level. it lifts...
https://infosec.exchange/@gf_256...

terminal brainworm

https://infosec.exchange/@gf_256...

terminal brainworm

15.2.2024 05:53terminal brainworm
https://infosec.exchange/@gf_256...

https://infosec.exchange/@gf_256...

14.2.2024 22:17
https://infosec.exchange/@gf_256...

Lastly, thank you to @whitequark for her helpful feedback and advice about Yosys and the sections regarding hardware and logic synthesis!

https://infosec.exchange/@gf_256...

Lastly, thank you to @whitequark for her helpful feedback and advice about Yosys and the sections regarding hardware and logic synthesis!

7.2.2024 04:08Lastly, thank you to @whitequark for her helpful feedback and advice about Yosys and the sections regarding hardware and logic synthesis!
https://infosec.exchange/@gf_256...

To see all the details on how oblivious transfer and garbled circuits work, I've written a full blog post on MPC from scratch.Check it...

https://infosec.exchange/@gf_256...

To see all the details on how oblivious transfer and garbled circuits work, I've written a full blog post on MPC from scratch.

Check it out! 👇
zellic.io/blog/mpc-from-scratc

7.2.2024 04:06To see all the details on how oblivious transfer and garbled circuits work, I've written a full blog post on MPC from scratch.Check it...
https://infosec.exchange/@gf_256...

The MPC protocol we'll be building is Yao's Garbled Circuit protocol.The idea behind garbled circuits is to encode the computation...

https://infosec.exchange/@gf_256...

The MPC protocol we'll be building is Yao's Garbled Circuit protocol.

The idea behind garbled circuits is to encode the computation into a boolean circuit made of logic gates, then evaluate each of the logic gates in a MPC-like way.

To do this, we'll first need a primitive known as Oblivious Transfer. OT is MPC-complete, meaning it can be used to accomplish any MPC! But what is oblivious transfer?

Imagine I have two messages. I want to let you pick one of the messages, without seeing the other one. You also don't want to reveal which one you picked. Oblivious transfer accomplishes this.

7.2.2024 04:06The MPC protocol we'll be building is Yao's Garbled Circuit protocol.The idea behind garbled circuits is to encode the computation...
https://infosec.exchange/@gf_256...

For example, MPC can be used to jointly encrypt a message with AES, with the key split up among many different parties.But what's the...

https://infosec.exchange/@gf_256...

For example, MPC can be used to jointly encrypt a message with AES, with the key split up among many different parties.

But what's the difference versus key splitting, like Shamir's Secret Sharing?

In secret sharing, the key has to get reassembled. At some point, some trusted party is going to have the entire key available to them. Trusted party could get compromised.

With MPC, the whole operation is done in MPC, meaning there's no point where the combined key could be extracted.

7.2.2024 04:05For example, MPC can be used to jointly encrypt a message with AES, with the key split up among many different parties.But what's the...
https://infosec.exchange/@gf_256...

MPC, or multi-party computation, is about how multiple parties can do shared computations on private inputs without revealing those private...

https://infosec.exchange/@gf_256...

MPC, or multi-party computation, is about how multiple parties can do shared computations on private inputs without revealing those private inputs.

Suppose you and your friend want to compare who's richer, but without revealing your net worths.

MPC allows us to accomplish this, by computing the function (x > y), where x and y are private inputs.

In general, MPC can be used to build all kinds of useful protocols, like threshold cryptography, dark pools, and private auctions (for sugar beets)!

7.2.2024 04:05MPC, or multi-party computation, is about how multiple parties can do shared computations on private inputs without revealing those private...
https://infosec.exchange/@gf_256...

In 2008, the Danish government used cutting-edge cryptography to auction 25,000 tons of beets.The auction was needed to set the price of...

https://infosec.exchange/@gf_256...

In 2008, the Danish government used cutting-edge cryptography to auction 25,000 tons of beets.

The auction was needed to set the price of sugar beets. However, the farmers didn't want to show their hand. Rather than hire expensive consultants, they used MPC to implement this private auction.

But what's MPC, and how does it work? Let's build a MPC implementation from scratch. Here's how:

7.2.2024 04:05In 2008, the Danish government used cutting-edge cryptography to auction 25,000 tons of beets.The auction was needed to set the price of...
https://infosec.exchange/@gf_256...

horseshoe theory is just projective geometry ok?

https://infosec.exchange/@gf_256...

horseshoe theory is just projective geometry ok?

6.5.2023 19:05horseshoe theory is just projective geometry ok?
https://infosec.exchange/@gf_256...

I will say the auto delete post feature is great too since it encourages people to share their thoughts more openly. I still think...

https://infosec.exchange/@gf_256...

I will say the auto delete post feature is great too since it encourages people to share their thoughts more openly. I still think that's kind of a false sense of security though because nothing stopping your toots from getting archived or indexed by a crawler

5.12.2022 00:28I will say the auto delete post feature is great too since it encourages people to share their thoughts more openly. I still think...
https://infosec.exchange/@gf_256...

lets fucking gooooooo

https://infosec.exchange/@gf_256...

lets fucking gooooooo

28.11.2022 01:18lets fucking gooooooo
https://infosec.exchange/@gf_256...

https://infosec.exchange/@gf_256...

27.11.2022 18:37
https://infosec.exchange/@gf_256...
Subscribe
To add news/posts to your profile here, you must add a link to a RSS-Feed to your webfinger. One example how you can do this is to join Fediverse City.
         
Webfan Website Badge
Nutzungsbedingungen   Datenschutzerklärung  Impressum
Webfan | @Web pages | Fediverse Members

⬆️

⬇️