代码搜索结果
找到约 10,000 项符合
N 的代码
mutex7n.c
/*
* mutex7n.c
*
*
* --------------------------------------------------------------------------
*
* Pthreads-win32 - POSIX Threads Library for Win32
* Copyright(C) 1998 John E. Bosso
mutex1n.c
/*
* mutex1n.c
*
*
* --------------------------------------------------------------------------
*
* Pthreads-win32 - POSIX Threads Library for Win32
* Copyright(C) 1998 John E. Bosso
n2c.m
function c = n2c(n)
for i=1:length(n)
c{i} = n(i);
end
ec2n.cpp
// ec2n.cpp - written and placed in the public domain by Wei Dai
#include "pch.h"
#include "ec2n.h"
#include "asn.h"
#include "nbtheory.h" // for primeTable
#include "algebra.cpp"
#include "
ec2n.h
#ifndef CRYPTOPP_EC2N_H
#define CRYPTOPP_EC2N_H
#include "gf2n.h"
#include "eprecomp.h"
#include "smartptr.h"
NAMESPACE_BEGIN(CryptoPP)
struct EC2NPoint
{
EC2NPoint() : identity(true) {
gf2n.cpp
// gf2n.cpp - written and placed in the public domain by Wei Dai
#include "pch.h"
#include "gf2n.h"
#include "algebra.h"
#include "words.h"
#include
#include "algebra.cpp"
NA
gf2n.h
#ifndef CRYPTOPP_GF2N_H
#define CRYPTOPP_GF2N_H
#include "cryptlib.h"
#include "misc.h"
#include "algebra.h"
#include
NAMESPACE_BEGIN(CryptoPP)
class PolynomialMod2
{
public:
n2to10.m
%将2进制数转换为10进制数
function x=n2to10(s);
bn=size(s,2);
x=s(bn);
for i=1:bn-1
x=x+s(bn-i)*power(2,i);
end