logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

WPA3

1.概述WPA3在WPA2的基础上,增强了个人和企业网络中的安全保护。WPA3包括下面几种认证方式:WPA3: Simultaneous Authentication of Equals (SAE).WPA3: 192‑bit cryptographic strength security protocol defined in Commercial National Security Algor

Linux加入多播组

多播数据报只应该由对它感兴趣的应用接收。广播一般局限与局域网内使用,而多播既可以用于局域网,也可以用于广域网。多播地址多播地址需要对IPv4和IPv6分开讨论。IPv4的D类地址(从224.0.0.0到239.255.255.255)是IPv4多播地址。其中低28位为group ID,整个32位为group address。一些特殊的IPv4多播地址:224.0.0.1...

linux查看应用程序依赖的库

x86:ldd    + 应用名 arm:arm-linux-readelf    -d   应用名

linux用c语言获取系统启动时长

思路是通过读取/proc/uptime获得系统启动时长。使用命令cat /proc/uptime通过man proc可以看到如下的信息:/proc/uptime:This file contains two numbers: the uptime of the system (seconds), and the amount of time spent in idle process

#c语言
linux设备驱动——一个驱动如何管理多个设备

/** 说明:用于演示一个驱动如何管理多个设备。*/#include#include#include#include#include#include#include#include#include "ioctl.h"#define FSDEV_MAJOR250#defineFSDEV_MINOR0#define FSDEV_NR2#d

使用openssl进行AES 128 CTR 加密、解密

代码示例#include <stdlib.h>#include <stdio.h>#include <string.h>#include <openssl/evp.h&amp

python判断一个数是否是回数

回数是指从左向右读和从右向左读都是一样的数,例如12321,909。#!/usr/bin/env python# -*- coding: utf-8 -*-# 方法一def is_palindrome(n):s = str(n)l = len(s)i = 0while i < l - 1 - i:if s[i] != s[l-1-i]:

#python
到底了