Skip to content

Commit f841571

Browse files
committed
rename rsa bug fix
1 parent ced88f7 commit f841571

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

Algorithms.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
CB3173281E94E42F001E6998 /* list.h in Headers */ = {isa = PBXBuildFile; fileRef = CB3173271E94E42F001E6998 /* list.h */; settings = {ATTRIBUTES = (Public, ); }; };
1919
CB31732A1E94EC2E001E6998 /* list.c in Sources */ = {isa = PBXBuildFile; fileRef = CB3173291E94EC2E001E6998 /* list.c */; };
2020
CB3891841ED2DA7D00A177F9 /* cbc.c in Sources */ = {isa = PBXBuildFile; fileRef = CB3891831ED2DA7D00A177F9 /* cbc.c */; };
21-
CB3891971ED2DFA600A177F9 /* rea.c in Sources */ = {isa = PBXBuildFile; fileRef = CB3891961ED2DFA600A177F9 /* rea.c */; };
21+
CB3891971ED2DFA600A177F9 /* rsa.c in Sources */ = {isa = PBXBuildFile; fileRef = CB3891961ED2DFA600A177F9 /* rsa.c */; };
2222
CB38919B1ED4123800A177F9 /* graphalg.h in Headers */ = {isa = PBXBuildFile; fileRef = CB38919A1ED4123800A177F9 /* graphalg.h */; settings = {ATTRIBUTES = (Public, ); }; };
2323
CB38919E1ED41D3300A177F9 /* mst.c in Sources */ = {isa = PBXBuildFile; fileRef = CB38919D1ED41D3300A177F9 /* mst.c */; };
2424
CB3891B31ED55DF500A177F9 /* shortest.c in Sources */ = {isa = PBXBuildFile; fileRef = CB3891B21ED55DF500A177F9 /* shortest.c */; };
@@ -109,7 +109,7 @@
109109
CB3173271E94E42F001E6998 /* list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = list.h; sourceTree = "<group>"; };
110110
CB3173291E94EC2E001E6998 /* list.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = list.c; sourceTree = "<group>"; };
111111
CB3891831ED2DA7D00A177F9 /* cbc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cbc.c; sourceTree = "<group>"; };
112-
CB3891961ED2DFA600A177F9 /* rea.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = rea.c; sourceTree = "<group>"; };
112+
CB3891961ED2DFA600A177F9 /* rsa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = rsa.c; sourceTree = "<group>"; };
113113
CB38919A1ED4123800A177F9 /* graphalg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = graphalg.h; sourceTree = "<group>"; };
114114
CB38919D1ED41D3300A177F9 /* mst.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mst.c; sourceTree = "<group>"; };
115115
CB3891B21ED55DF500A177F9 /* shortest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = shortest.c; sourceTree = "<group>"; };
@@ -409,7 +409,7 @@
409409
children = (
410410
CB7193391ED2C77800790252 /* des.c */,
411411
CB3891831ED2DA7D00A177F9 /* cbc.c */,
412-
CB3891961ED2DFA600A177F9 /* rea.c */,
412+
CB3891961ED2DFA600A177F9 /* rsa.c */,
413413
);
414414
name = chapter15;
415415
sourceTree = "<group>";
@@ -675,7 +675,7 @@
675675
CB3891D21ED6CA8900A177F9 /* lint.c in Sources */,
676676
CB3891E71ED6DE1800A177F9 /* arclen.c in Sources */,
677677
CB13B0A41EB85EC50091404B /* ohtbl.c in Sources */,
678-
CB3891971ED2DFA600A177F9 /* rea.c in Sources */,
678+
CB3891971ED2DFA600A177F9 /* rsa.c in Sources */,
679679
CB38919E1ED41D3300A177F9 /* mst.c in Sources */,
680680
CB913EA71EB9B3CC005EDAEA /* bitree.c in Sources */,
681681
);

MasteringAlgorithms.xcodeproj/project.pbxproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3093,6 +3093,7 @@
30933093
CB3891FA1ED801EC00A177F9 /* Release */,
30943094
);
30953095
defaultConfigurationIsVisible = 0;
3096+
defaultConfigurationName = Release;
30963097
};
30973098
CB3F0D8A1EB08467008396F8 /* Build configuration list for PBXNativeTarget "C07-Set" */ = {
30983099
isa = XCConfigurationList;

source/rea.c renamed to source/rsa.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// rea.c
2+
// rsa.c
33
// Algorithms - RSA
44
//
55
// Created by YourtionGuo on 22/05/2017.

0 commit comments

Comments
 (0)