Wednesday, October 13, 2010
This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms
Tuesday, September 14, 2010
SharePoint 2010 Installation Error - FIPS cryptographic algorithm
An exception of type System.InvalidOperationException was thrown. Additional exception information: This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms.
System.InvalidOperationException: This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms.
I checked out few blogs, but was not able to resolve the issue.
These were the blogs/links I referred to:
Amol's blog:
http://sharepointknowledgebase.blogspot.com/2009/04/this-implementation-is-not-part-of.html,
this pointed me to this KB article http://support.microsoft.com/kb/911722. The KB article talks about adding a section to your web.config, but in my case, the central admin site is also still not created so there is no web.config.
I also referred to another link which suggested to disable the FIPS compliance related Local security policy, but in my case it was already disabled.
I will troubleshoot this further and keep updating this post.
Update Oct 11th,2010.
We re-imaged our virtual server, basically got a new server and tried again, same problem again.
I have posted a question in technet
Tuesday, August 31, 2010
SharePoint Item Level Permission
SPRoleDefinition oRoleDefinition_Read = workflowProperties.Web.RoleDefinitions["Read"];
//loop through the user and groups at list level
foreach (SPRoleAssignment oRoleAssignment in workflowProperties.List.RoleAssignments)
{
//Remove all definitions(permissions)associated with the Role Assigments(Users and group)
oRoleAssignment.RoleDefinitionBindings.RemoveAll();
//Add the read only definition to role assignment
oRoleAssignment.RoleDefinitionBindings.Add(oRoleDefinition_Read);
//bind the the new role assignment to the item.
workflowProperties.Item.RoleAssignments.Add(oRoleAssignment);
}
3.) Then update the item and you are done.