学习
「已注销」
Back to 17.
展开
-
RSA:公式与练习
RSA固定公式公钥(e,n)私钥(d,n)明文mn = p * qø(n) = (p - 1) * (q - 1)ed ≡ 1 mod ø(n)密文C=m^e mod n解密m=c^d mod n例题在 RSA 算法中,取密钥 E = 3,D = 7,则明文 6 的密文是()加密ed ≡ 1 mod ø(n)3*7 = 1 mode ø(n)ø(n) = 20ø(n) = (p - 1) * (q - 1)20 = (原创 2021-07-27 17:54:21 · 410 阅读 · 1 评论 -
SpringSecurity:入门案例
SpringSecurity入门案例创建项目新建springboot项目确定新建(什么都不要配置)配置SpringSecurity依赖修改pom.xml,添加依赖<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </depe原创 2021-07-21 16:30:35 · 135 阅读 · 0 评论