2023年3月

# -*- coding:utf-8 -*-
import random

def generate_key(length):
    """生成给定长度的随机字节序列"""
    key = bytearray(length)
    for i in range(length):
        key[i] = random.randint(0, 255)
    return key

def xor_encrypt(plaintext, key):
    """对给定字符串进行异或加密"""
    ciphertext = bytearray(len(plaintext))
    for i in range(len(plaintext)):
        ciphertext[i] = plaintext[i] ^ key[i % len(key)]
    return ciphertext

# 生成一个长度为16的随机密钥
key = generate_key(16)
# print(key)
# print(key.hex())
# 要加密的字符串
plaintext = "比亚迪元EV360电池容量是42KWH(42度电),但充满需要5比亚迪元EV360电池容量是42KWH(42度电),但充满需要5比亚迪元EV360电池容量是42KWH(42度电),但充满需要5比亚迪元EV360电池容量是42KWH(42度电),但充满需要5比亚迪元EV360电池容量是42KWH(42度电),但充满需要5比亚迪元EV360电池容量是42KWH(42度电),但充满需要5比亚迪元EV360电池容量是42KWH(42度电),但充满需要5"

plaintext=str(plaintext)
# print(plaintext.encode())
# 对字符串进行异或加密
ciphertext = xor_encrypt(plaintext.encode(), key)

# 打印加密后的密文和密钥
print("密文:", ciphertext.hex())
print("密钥:", key.hex())

import binascii

def xor_decrypt(ciphertext, key):
    """对给定的密文进行异或解密"""
    plaintext = bytearray(len(ciphertext))
    for i in range(len(ciphertext)):
        plaintext[i] = ciphertext[i] ^ key[i % len(key)]
    return plaintext.decode()

# 用于解密的密钥和密文
# key = binascii.unhexlify('8f6a71e35bf0c6e7beec02d8c200f5c5')
# ciphertext = binascii.unhexlify('3845b075ae98b1c5f4d4d8c29e')
key=key

ciphertext=ciphertext

# 对密文进行异或解密
plaintext = xor_decrypt(ciphertext, key)

# 打印解密后的明文
print("明文:", plaintext)

import os
import random


def generate_key(length):
    """生成给定长度的随机字节序列"""
    key = bytearray(length)
    for i in range(length):
        key[i] = random.randint(0, 255)
    return key


def xor_encrypt(plaintext, key):
    """对给定字符串进行异或加密"""
    ciphertext = bytearray(len(plaintext))
    for i in range(len(plaintext)):
        ciphertext[i] = plaintext[i] ^ key[i % len(key)]
    return ciphertext


def encrypt_file(filename, key):
    """对给定文件进行加密"""
    # 读取文件内容
    with open(filename, 'rb') as f:
        plaintext = f.read()

    # 对文件内容进行加密
    ciphertext = xor_encrypt(plaintext, key)

    # 将加密后的内容写回文件中
    with open(filename, 'wb') as f:
        f.write(ciphertext)


# 要加密的文件名和密钥长度
filename = 'test.txt'
key_length = 16

# 生成一个长度为16的随机密钥
key = generate_key(key_length)

# 对文件进行加密
encrypt_file(filename, key)

# 打印加密后的密文和密钥
with open(filename, 'rb') as f:
    ciphertext = f.read()
print("密文:", ciphertext.hex())
print("密钥:", key.hex())

「投资自己的意思是,在我们个人成长的突破上、在我们技能的提升上、在我们视野的拓宽上,不遗余力地投入自己的时间资源、脑力资源、财务「资源,等等,并且保持它的强度、持久度、力度以及深度,用最大的努力谋求可达成的结果。」「我们花钱能够得到的东西往往是快速及时反馈的,「另外一个方面,既然钱带来的东西能够马上见到结果,那么它往往也是没有什么竞争壁垒的。

「投资自己一定是去用时间换来一些别人无「法替代的竞争优势。我最近三年做的一件事情,就是通过持续写作来投资自己,建立自己的优势壁垒,从而能够在整个市场上做一个区分。「我把自己的文章发到网「上,这是一种以非常公开透明的方式来记录展现我自己的变化历程,而当我持续写到1000天的时候,我就不需要去说服,也会有很多人愿意来找我。」

注意力是穷人最宝贵的资源了,要保护好自己自己的注意力,做真正有价值有意义的事情。看书,运动,做家务,走出去散步,学习自己感兴趣的技能,干啥都好,做需要自己主动投入进去的事情都好。就是不要无脑刷手机之类的。