博文

目前显示的是 十一月, 2020的博文

简单加密解密

void encrypt(char *password) { int x = strlen(password); char t[strlen(password)]; strcpy(t, password); int i; for(i=0; i<strlen(password); i++) { char cur = t[i]; if(isalpha(cur)) { t[i] = cur +1; } } printf("%s\n",t); for(i=0; i<strlen(password); i++) { char c = t[i]; if(isalpha(c)) { t[i] = c - 1; } } printf("the decrypted message is: %s\n", t); } int main() { char msg[] = "root"; printf("%s\n", msg); encrypt(msg); }

Mock、Spring-boot、Stub、mybatis、Junit测试

nmap

 nohup nmap -v -A 10.2.24-30.1-254 -vv -p1-65535 -oX 1.xml &