Skip to content

Commit a508703

Browse files
committed
lol
1 parent e238ae2 commit a508703

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

src/cryptography/fernet.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,10 @@ def decrypt(self, token: bytes, ttl: typing.Optional[int] = None) -> bytes:
8787
time_info = (ttl, int(time.time()))
8888
return self._decrypt_data(data, timestamp, time_info)
8989

90+
def thingy(self):
91+
x = 1 + 2
92+
return x
93+
9094
def decrypt_at_time(
9195
self, token: bytes, ttl: int, current_time: int
9296
) -> bytes:

src/rust/src/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ fn duplicate_msb_to_all(a: u8) -> u8 {
1515
0u8.wrapping_sub(a >> 7)
1616
}
1717

18+
pub fn load_der_x509_crl_from_file() -> i32 {
19+
32
20+
}
21+
1822
/// This returns 0xFF if a < b else 0x00, but does so in a constant time
1923
/// fashion.
2024
fn constant_time_lt(a: u8, b: u8) -> u8 {

0 commit comments

Comments
 (0)